We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e8673 commit 8d2163cCopy full SHA for 8d2163c
1 file changed
protocols/ford_v0.c
@@ -637,6 +637,14 @@ SubGhzProtocolStatus
637
break;
638
}
639
640
+ //Update the PSF file, since we have overwritten the COUNTER and BUTTON
641
+ //This makes the file's nummers wrong, and fails tests. It wasnt causing a TX bug, but manual tests failed.
642
+ flipper_format_rewind(flipper_format);
643
+ uint32_t temp = calculated_crc;
644
+ flipper_format_insert_or_update_uint32(flipper_format, "CRC", &temp, 1);
645
+ temp = instance->bs;
646
+ flipper_format_insert_or_update_uint32(flipper_format, "BS", &temp, 1);
647
+
648
instance->encoder.is_running = true;
649
650
FURI_LOG_I(
0 commit comments