mimxrt/boards: Set vfs partition start to 1 MBbyte.
This avoids the irritation of the PJRC HalfKay loader on Teensy 4.0. Block 0 and 1 are properly erased and the additional formatting in the make script is not required anymore.
This commit is contained in:
parent
a262faa227
commit
b35566af79
|
@ -8,8 +8,8 @@ ivt_size = 0x00001000;
|
|||
interrupts_start = 0x60002000;
|
||||
interrupts_size = 0x00000400;
|
||||
text_start = 0x60002400;
|
||||
text_size = ((((text_start) + 1M) + (4k - 1)) & ~(4k - 1)) - (text_start); /* reserve 1M for code but align on 4k boundary */
|
||||
vfs_start = (text_start) + (text_size);
|
||||
vfs_start = 0x60100000;
|
||||
text_size = ((vfs_start) - (text_start));
|
||||
vfs_size = ((flash_end) - (vfs_start));
|
||||
itcm_start = 0x00000000;
|
||||
itcm_size = 0x00020000;
|
||||
|
|
|
@ -5,5 +5,3 @@ MICROPY_FLOAT_IMPL = double
|
|||
|
||||
deploy: $(BUILD)/firmware.hex
|
||||
teensy_loader_cli --mcu=imxrt1062 -v -w $<
|
||||
sleep 1
|
||||
$(PYTHON) $(TOP)/tools/pyboard.py --device $(PORT) $(BOARD_DIR)/format.py
|
||||
|
|
Loading…
Reference in New Issue