rename needs_advisories_handled to woke_from_alarm_handler

This commit is contained in:
joeycastillo
2024-10-02 07:52:10 -04:00
parent 3f846ff6b4
commit 411a64f44b
2 changed files with 6 additions and 5 deletions

View File

@@ -130,6 +130,7 @@ typedef enum {
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.
@@ -279,7 +280,7 @@ typedef struct {
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;