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