mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
Supports Murata 1YN for WiFi and BLE. Signed-off-by: iabdalkader <i.abdalkader@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
15 lines
514 B
ArmAsm
15 lines
514 B
ArmAsm
#include "mcu/ensemble.ld.S"
|
|
|
|
/* Define ROMFS partition locations. */
|
|
#if CORE_M55_HP
|
|
/* The HP core has access to the external OSPI flash and MRAM ROMFS partitions. */
|
|
_micropy_hw_romfs_part0_start = 0xa1000000;
|
|
_micropy_hw_romfs_part0_size = 16M;
|
|
_micropy_hw_romfs_part1_start = ORIGIN(MRAM_FS);
|
|
_micropy_hw_romfs_part1_size = LENGTH(MRAM_FS);
|
|
#else
|
|
/* The HP core has access to the MRAM ROMFS partition. */
|
|
_micropy_hw_romfs_part0_start = ORIGIN(MRAM_FS);
|
|
_micropy_hw_romfs_part0_size = LENGTH(MRAM_FS);
|
|
#endif
|