From 9d623c505470fead28a674a9b1c38a4969a62e43 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 9 Oct 2023 21:39:06 -0700 Subject: [PATCH] client: Rename the event enum values --- client/tattlekey.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; -- 2.44.1