diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-21 11:46:56 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-21 13:40:58 -0400 |
commit | a6024e9fdae3d41fc12c40920bc16899f73efd63 (patch) | |
tree | c4754efea37368d49bc8b17aaee081a4ab3769d7 /movement/movement.c | |
parent | 19dac66a3bd84cf7868d2a27225e92a5a486c03d (diff) | |
download | Sensor-Watch-a6024e9fdae3d41fc12c40920bc16899f73efd63.tar.gz Sensor-Watch-a6024e9fdae3d41fc12c40920bc16899f73efd63.tar.bz2 Sensor-Watch-a6024e9fdae3d41fc12c40920bc16899f73efd63.zip |
stargazer firmware: make LED red by default
Diffstat (limited to 'movement/movement.c')
-rw-r--r-- | movement/movement.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/movement/movement.c b/movement/movement.c index 22175efe..c3beec87 100644 --- a/movement/movement.c +++ b/movement/movement.c @@ -268,6 +268,10 @@ void app_wake_from_backup(void) { } void app_setup(void) { + #ifdef MOVEMENT_CUSTOM_BOOT_COMMANDS + MOVEMENT_CUSTOM_BOOT_COMMANDS() + #endif + watch_store_backup_data(movement_state.settings.reg, 0); static bool is_first_launch = true; |