From: Scott Worley Date: Tue, 10 Oct 2023 04:39:06 +0000 (-0700) Subject: client: Rename the event enum values X-Git-Tag: v0.1.0~38 X-Git-Url: http://git.scottworley.com/tattlekey/commitdiff_plain/9d623c505470fead28a674a9b1c38a4969a62e43?hp=adf355dc420c072b09c5d40187a62c300234d85d client: Rename the event enum values --- diff --git a/client/tattlekey.c b/client/tattlekey.c index 2fc604b..c5e500e 100644 --- a/client/tattlekey.c +++ b/client/tattlekey.c @@ -9,7 +9,7 @@ #include "net.h" #include "sends.h" -enum event_type { BUTTONPRESS, SEND }; +enum event_type { NEW_BUTTON_PRESS, RESEND_TIME }; typedef struct { enum event_type type; union { @@ -42,7 +42,7 @@ static void button_pressed() { if (time_since_last_press >= config_minimum_seconds_between_button_presses) { last_button_press_time = now; event_t e; - e.type = BUTTONPRESS; + e.type = NEW_BUTTON_PRESS; e.buttonpress.timestamp = now; queue_try_add_ignoring_errors(&queue, &e); } @@ -51,7 +51,7 @@ static void button_pressed() { static void time_to_send(uint _) { /* This runs in interrupt context; don't linger. */ event_t e; - e.type = SEND; + e.type = RESEND_TIME; queue_try_add_ignoring_errors(&queue, &e); } @@ -103,10 +103,10 @@ void service_queue() { event_t e; queue_remove_blocking(&queue, &e); switch (e.type) { - case BUTTONPRESS: { + case NEW_BUTTON_PRESS: { create_send(sleeping_sends, sleeps_heap, e.buttonpress.timestamp, seq++); } break; - case SEND: { + case RESEND_TIME: { /* OK, we're awake. Cool. Thanks! (We actually do the sends in the * service_sleeps() call at the top of the loop.) */ } break;