X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/f523aaab2c85c71677a894c76ad7663101b388ed..9d623c505470fead28a674a9b1c38a4969a62e43:/client/tattlekey.c?ds=sidebyside diff --git a/client/tattlekey.c b/client/tattlekey.c index c600448..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); } @@ -78,7 +78,7 @@ void service_sleeps(int alarm, send_t *sleeping_sends, pheap_t *sleeps_heap) { pheap_node_id_t i = ph_remove_head(sleeps_heap, false); send_t *send = &sleeping_sends[i]; uint32_t ago = now - send->timestamp; - send_report(send->seq, ago); + send_report_packet(send->seq, ago); send->send_count++; if (send->send_count < config_resend_count) ph_insert_node(sleeps_heap, i); @@ -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;