// TODO: handle other advisory types
}
}
- movement_state.needs_advisories_handled = false;
+ movement_state.woke_from_alarm_handler = false;
}
static void _movement_handle_scheduled_tasks(void) {
// as long as le_mode_ticks is -1 (i.e. we are in low energy mode), we wake up here, update the screen, and go right back to sleep.
while (movement_state.le_mode_ticks == -1) {
// we also have to handle background tasks here in the mini-runloop
- if (movement_state.needs_advisories_handled) _movement_handle_advisories();
+ if (movement_state.woke_from_alarm_handler) _movement_handle_advisories();
event.event_type = EVENT_LOW_ENERGY_UPDATE;
watch_faces[movement_state.current_face_idx].loop(event, watch_face_contexts[movement_state.current_face_idx]);
}
// handle advisories, if the alarm handler told us we need to
- if (movement_state.needs_advisories_handled) _movement_handle_advisories();
+ if (movement_state.woke_from_alarm_handler) _movement_handle_advisories();
// if we have a scheduled background task, handle that here:
if (event.event_type == EVENT_TICK && movement_state.has_scheduled_background_task) _movement_handle_scheduled_tasks();
}
void cb_alarm_fired(void) {
- movement_state.needs_advisories_handled = true;
+ movement_state.woke_from_alarm_handler = true;
}
void cb_fast_tick(void) {
EVENT_LOW_ENERGY_UPDATE, // If the watch is in low energy mode and you are in the foreground, you will get a chance to update the display once per minute.
EVENT_BACKGROUND_TASK, // Your watch face is being invoked to perform a background task. Don't update the display here; you may not be in the foreground.
EVENT_TIMEOUT, // Your watch face has been inactive for a while. You may want to resign, depending on your watch face's intended use case.
+
EVENT_LIGHT_BUTTON_DOWN, // The light button has been pressed, but not yet released.
EVENT_LIGHT_BUTTON_UP, // The light button was pressed for less than half a second, and released.
EVENT_LIGHT_LONG_PRESS, // The light button was held for over half a second, but not yet released.
uint16_t alarm_down_timestamp;
// background task handling
- bool needs_advisories_handled;
+ bool woke_from_alarm_handler;
bool has_scheduled_background_task;
bool needs_wake;