From a5a94dea7043fa6b65693cf0cc11d426d49c637d Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Mon, 24 Oct 2022 19:57:30 +0200 Subject: added SMS app; fixed phone app --- fw/fe310/phone/timer.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'fw/fe310/phone/timer.c') diff --git a/fw/fe310/phone/timer.c b/fw/fe310/phone/timer.c index 03593ff..cd66053 100644 --- a/fw/fe310/phone/timer.c +++ b/fw/fe310/phone/timer.c @@ -31,7 +31,10 @@ int timer_app(EVEWindow *window, EVEViewStack *stack) { APP_SPACERW(1,1), }; EVEPage *page = eve_form_create(window, stack, spec, APP_SPEC_SIZE(spec), NULL, timer_close); - if (page == NULL) return EVE_ERR_NOMEM; + if (page == NULL) { + APP_LOG(APP_LOG_ERR, "OUT OF MEMORY\n"); + return EVE_ERR_NOMEM; + } eos_timer_set_handler(EOS_TIMER_ETYPE_USR, timer); eos_timer_set(EOS_TIMER_ETYPE_USR, 500); eos_net_acquire_for_evt(EOS_EVT_TIMER | EOS_TIMER_ETYPE_USR, 1); -- cgit v1.2.3