summaryrefslogtreecommitdiff
path: root/supervisor
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-04-01 13:52:53 -0400
committerLucian Copeland <hierophect@gmail.com>2020-04-01 13:52:53 -0400
commit2f764ded6379786d8d17322fa2e859fd102d5397 (patch)
treec52181f89809882d8403bb1368db265dc47433ec /supervisor
parenta89928c13c748b7f25bd4e734cfe487b0020a25d (diff)
merge and docs
Diffstat (limited to 'supervisor')
-rwxr-xr-xsupervisor/linker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/supervisor/linker.h b/supervisor/linker.h
index 57ae14615..878268c73 100755
--- a/supervisor/linker.h
+++ b/supervisor/linker.h
@@ -29,7 +29,7 @@
#ifndef MICROPY_INCLUDED_SUPERVISOR_LINKER_H
#define MICROPY_INCLUDED_SUPERVISOR_LINKER_H
-#if defined(IMXRT10XX) // || defined(STM32H7)
+#if defined(IMXRT10XX) || defined(FOMU) // || defined(STM32H7)
#define PLACE_IN_DTCM_DATA(name) name __attribute__((section(".dtcm_data." #name )))
#define PLACE_IN_DTCM_BSS(name) name __attribute__((section(".dtcm_bss." #name )))
#define PLACE_IN_ITCM(name) __attribute__((section(".itcm." #name ))) name