diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2020-04-01 13:02:05 -0400 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2020-04-01 13:02:05 -0400 |
| commit | a89928c13c748b7f25bd4e734cfe487b0020a25d (patch) | |
| tree | 1db18706dc315cc178259a771882f51ade413519 /supervisor | |
| parent | e2be0696865992cda67f5bdeba5aeb5b4c2fdcd4 (diff) | |
Implement requested changes
Diffstat (limited to 'supervisor')
| -rwxr-xr-x | supervisor/linker.h | 2 |
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 |
