summaryrefslogtreecommitdiff
path: root/supervisor
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-04-01 13:02:05 -0400
committerLucian Copeland <hierophect@gmail.com>2020-04-01 13:02:05 -0400
commita89928c13c748b7f25bd4e734cfe487b0020a25d (patch)
tree1db18706dc315cc178259a771882f51ade413519 /supervisor
parente2be0696865992cda67f5bdeba5aeb5b4c2fdcd4 (diff)
Implement requested changes
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 b58414433..57ae14615 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)
+#if defined(IMXRT10XX) // || 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