From 75849f79ab9d2102219498de7b3d4c535be83fbf Mon Sep 17 00:00:00 2001 From: dnc40085 Date: Wed, 4 Nov 2015 17:55:09 -0800 Subject: [PATCH] Fix compiler warning in tmr.c Fix compiler warning: implicit declaration of function 'system_soft_wdt_feed' --- app/modules/tmr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/modules/tmr.c b/app/modules/tmr.c index 31d35d9e..cad2e8dd 100755 --- a/app/modules/tmr.c +++ b/app/modules/tmr.c @@ -76,6 +76,7 @@ extern uint32_t platform_tmr_exists(uint32_t t); extern uint32_t system_rtc_clock_cali_proc(); extern uint32_t system_get_rtc_time(); extern void system_restart(); +extern void system_soft_wdt_feed(); //in fact lua_State is constant, it's pointless to pass it around //but hey, whatever, I'll just pass it, still we waste 28B here