stargazer firmware: make LED red by default
This commit is contained in:
parent
19dac66a3b
commit
a6024e9fda
@ -27,6 +27,11 @@
|
|||||||
|
|
||||||
#include "movement_faces.h"
|
#include "movement_faces.h"
|
||||||
|
|
||||||
|
#define MOVEMENT_CUSTOM_BOOT_COMMANDS() { \
|
||||||
|
movement_state.settings.bit.led_green_color = 0x0;\
|
||||||
|
movement_state.settings.bit.led_red_color = 0xF;\
|
||||||
|
}
|
||||||
|
|
||||||
const watch_face_t watch_faces[] = {
|
const watch_face_t watch_faces[] = {
|
||||||
simple_clock_face,
|
simple_clock_face,
|
||||||
astronomy_face,
|
astronomy_face,
|
||||||
|
@ -268,6 +268,10 @@ void app_wake_from_backup(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void app_setup(void) {
|
void app_setup(void) {
|
||||||
|
#ifdef MOVEMENT_CUSTOM_BOOT_COMMANDS
|
||||||
|
MOVEMENT_CUSTOM_BOOT_COMMANDS()
|
||||||
|
#endif
|
||||||
|
|
||||||
watch_store_backup_data(movement_state.settings.reg, 0);
|
watch_store_backup_data(movement_state.settings.reg, 0);
|
||||||
|
|
||||||
static bool is_first_launch = true;
|
static bool is_first_launch = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user