From 12cc817baa17ddf8dde55b5f34f38432225bc1e8 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 29 Aug 2023 16:18:19 -0700 Subject: modules/strobe: s/ticks/last_flash_ticks/ Clarifying trivial mechanical rename --- src/modules/strobe/strobe.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/modules/strobe/strobe.c b/src/modules/strobe/strobe.c index 8b3658e..76ce260 100644 --- a/src/modules/strobe/strobe.c +++ b/src/modules/strobe/strobe.c @@ -29,7 +29,7 @@ typedef struct strobe_setup_t { typedef struct strobe_context_t { til_module_context_t til_module_context; strobe_setup_t *setup; - unsigned ticks; + unsigned last_flash_ticks; unsigned flash:1; unsigned flash_ready:1; } strobe_context_t; @@ -44,7 +44,7 @@ static til_module_context_t * strobe_create_context(const til_module_t *module, return NULL; ctxt->setup = (strobe_setup_t *)setup; - ctxt->ticks = ticks; + ctxt->last_flash_ticks = ticks; return &ctxt->til_module_context; } @@ -56,7 +56,7 @@ static void strobe_prepare_frame(til_module_context_t *context, til_stream_t *st *res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu_x16 }; - if (ctxt->flash_ready && (ticks - ctxt->ticks >= (unsigned)((1.f / ctxt->setup->hz) * 1000.f))){ + if (ctxt->flash_ready && (ticks - ctxt->last_flash_ticks >= (unsigned)((1.f / ctxt->setup->hz) * 1000.f))){ ctxt->flash = 1; ctxt->flash_ready = 0; } else { @@ -85,7 +85,7 @@ static void strobe_finish_frame(til_module_context_t *context, til_stream_t *str return; ctxt->flash = 0; - ctxt->ticks = ticks; + ctxt->last_flash_ticks = ticks; } -- cgit v1.2.1