Skip to content
Snippets Groups Projects
Commit c8a10503 authored by Simone Guscetti's avatar Simone Guscetti Committed by Beat Küng
Browse files

libled: allow infinite flashing mode

parent bda929be
No related branches found
No related tags found
No related merge requests found
......@@ -29,5 +29,5 @@ uint8 led_mask # bitmask which LED(s) to control, set to 0xff for all
uint8 color # see COLOR_*
uint8 mode # see MODE_*
uint8 num_blinks # how many times to blink (number of on-off cycles if mode is one of MODE_BLINK_*) . Set to 0 for infinite
# in MODE_FLASH it is the number of cycles (infinite is not possible)
# in MODE_FLASH it is the number of cycles. Max number of blinks: 122 and max number of flash cycles: 20
uint8 priority # priority: higher priority events will override current lower priority events (see MAX_PRIORITY)
......@@ -140,14 +140,13 @@ int LedController::update(LedControlData &control_data)
if ((_states[i].current_blinking_time += blink_delta_t) > current_blink_duration) {
_states[i].current_blinking_time -= current_blink_duration;
if (cur_data.blink_times_left == 254) {
// handle toggling for infinite case: toggle between 254 and 255
if (cur_data.blink_times_left == 246) {
// handle toggling for infinite case: decrease between 255 and 246
// In order to handle the flash mode infinite case it needs a
// total of 10 steps.
cur_data.blink_times_left = 255;
++num_blinking_do_not_change_state;
} else if (cur_data.blink_times_left == 255) {
cur_data.blink_times_left = 254;
} else if (--cur_data.blink_times_left == 0) {
cur_data.mode = led_control_s::MODE_DISABLED;
_states[i].current_blinking_time = 0;
......
......@@ -158,7 +158,7 @@ private:
if (priority[next_priority].blink_times_left == 0) {
// handle infinite case
priority[next_priority].blink_times_left = 254;
priority[next_priority].blink_times_left = 246;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment