mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-30 04:19:59 -07:00
IR: Fix crash on duty_cycle=1
This commit is contained in:
@@ -612,7 +612,7 @@ void infrared_worker_set_raw_signal(
|
|||||||
furi_check(timings);
|
furi_check(timings);
|
||||||
furi_check(timings_cnt > 0);
|
furi_check(timings_cnt > 0);
|
||||||
furi_check((frequency <= INFRARED_MAX_FREQUENCY) && (frequency >= INFRARED_MIN_FREQUENCY));
|
furi_check((frequency <= INFRARED_MAX_FREQUENCY) && (frequency >= INFRARED_MIN_FREQUENCY));
|
||||||
furi_check((duty_cycle < 1.0f) && (duty_cycle > 0.0f));
|
furi_check((duty_cycle <= 1.0f) && (duty_cycle > 0.0f));
|
||||||
|
|
||||||
size_t max_copy_num = COUNT_OF(instance->signal.raw.timings) - 1;
|
size_t max_copy_num = COUNT_OF(instance->signal.raw.timings) - 1;
|
||||||
furi_check(timings_cnt <= max_copy_num);
|
furi_check(timings_cnt <= max_copy_num);
|
||||||
|
|||||||
Reference in New Issue
Block a user