Skip to content

Commit

Permalink
fix(megaflash): initialize slot0 erase list with ff fro bringup #783
Browse files Browse the repository at this point in the history
  • Loading branch information
lydon42 committed Feb 12, 2024
1 parent 6254f8a commit 3c10488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/mf_hlflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

uint8_t mfhf_slot_mb = 1;
uint32_t mfhf_slot_size = 1L << 20;
uint8_t mfhf_slot0_erase_list[16];
uint8_t mfhf_slot0_erase_list[16] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };

uint8_t mfhf_core_file_state = MFHF_LC_NOTLOADED;

Expand Down

0 comments on commit 3c10488

Please sign in to comment.