1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

upd changelog and add fix

This commit is contained in:
MX
2025-03-15 09:32:19 +03:00
parent c04ce78fcd
commit 94b369657d
2 changed files with 2 additions and 1 deletions

View File

@@ -19,6 +19,7 @@
* SubGHz: Various bugfixes and experimental options (rolling counter overflow) (by @xMasterX) * SubGHz: Various bugfixes and experimental options (rolling counter overflow) (by @xMasterX)
* Anims: Disable winter anims * Anims: Disable winter anims
* NFC: mfclassic poller fix early key reuse in dictionary attack state machine (by @noproto) * NFC: mfclassic poller fix early key reuse in dictionary attack state machine (by @noproto)
* OFW PR 4132: Infrared: Fix universals sending (by @Willy-JL)
* OFW PR 4149: HID Ble: increased stack and improvements (by @doomwastaken) * OFW PR 4149: HID Ble: increased stack and improvements (by @doomwastaken)
* OFW PR 4126: Stricter constness for const data (by @hedger) * OFW PR 4126: Stricter constness for const data (by @hedger)
* OFW PR 4017: Alarm improvements: Snooze, timeouts, and dismissing from the locked state (by @Astrrra) * OFW PR 4017: Alarm improvements: Snooze, timeouts, and dismissing from the locked state (by @Astrrra)

View File

@@ -104,9 +104,9 @@ InfraredErrorCode infrared_brute_force_calculate_messages(InfraredBruteForce* br
break; break;
} }
size_t signal_start = flipper_format_tell(ff);
bool signal_valid = false; bool signal_valid = false;
while(infrared_signal_read_name(ff, signal_name) == InfraredErrorCodeNone) { while(infrared_signal_read_name(ff, signal_name) == InfraredErrorCodeNone) {
size_t signal_start = flipper_format_tell(ff);
error = infrared_signal_read_body(signal, ff); error = infrared_signal_read_body(signal, ff);
signal_valid = (!INFRARED_ERROR_PRESENT(error)) && infrared_signal_is_valid(signal); signal_valid = (!INFRARED_ERROR_PRESENT(error)) && infrared_signal_is_valid(signal);
if(!signal_valid) break; if(!signal_valid) break;