Fixes an uninitialized variable that caused the CC430F6147 watch to lock up during app_init(). #75

This commit is contained in:
Travis Goodspeed 2018-04-20 22:29:16 -04:00
parent ce1e99e3aa
commit 97c0fcb79a

View File

@ -15,7 +15,7 @@
static int appindex=DEFAULTAPP, idlecount=0;
//! The currently selected application.
const struct app *applet;
const struct app *applet=&apps[0];
//! Every 3 minutes we return to the clock unless this is called.
void app_cleartimer(){