Skip to content

Commit 1902579

Browse files
committed
supervisor: enable itcm memory region for fomu
Signed-off-by: Sean Cross <[email protected]>
1 parent 786e79e commit 1902579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supervisor/linker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#ifndef MICROPY_INCLUDED_SUPERVISOR_LINKER_H
3030
#define MICROPY_INCLUDED_SUPERVISOR_LINKER_H
3131

32-
#if defined(IMXRT10XX)
32+
#if defined(IMXRT10XX) || defined(FOMU)
3333
#define PLACE_IN_DTCM_DATA(name) name __attribute__((section(".dtcm_data." #name )))
3434
#define PLACE_IN_DTCM_BSS(name) name __attribute__((section(".dtcm_bss." #name )))
3535
#define PLACE_IN_ITCM(name) __attribute__((section(".itcm." #name ))) name

0 commit comments

Comments
 (0)