diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2020-01-31 14:35:54 -0500 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2020-01-31 14:35:54 -0500 |
| commit | 41aefc819bd177865d7114d58a00e8b67cbd6cb1 (patch) | |
| tree | e1b4b8bf6d232f959e956095fa2639ae5af9f416 | |
| parent | a10e5d1da2f0fa29c3588bda5c791ca47fbe53bd (diff) | |
Fix pyboard
| -rw-r--r-- | ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk | 3 | ||||
| -rw-r--r-- | ports/stm32f4/boards/pyboard_v11/mpconfigboard.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk b/ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk index e7c5353b4..3fc8581ef 100644 --- a/ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk +++ b/ports/stm32f4/boards/feather_stm32f405_express/mpconfigboard.mk @@ -15,7 +15,8 @@ MCU_SUB_VARIANT = stm32f405xx MCU_PACKAGE = 64 CMSIS_MCU = STM32F405xx -LD_FS = boards/STM32F405_fs.ld # Default to internal FS +# Default includes filesystem, but uses external flash +LD_FS = boards/STM32F405_fs.ld LD_BOOT = boards/STM32F405_boot.ld # UF2 boot option UF2_OFFSET = 0x8010000 diff --git a/ports/stm32f4/boards/pyboard_v11/mpconfigboard.mk b/ports/stm32f4/boards/pyboard_v11/mpconfigboard.mk index b83852c4c..ef1b8f0ca 100644 --- a/ports/stm32f4/boards/pyboard_v11/mpconfigboard.mk +++ b/ports/stm32f4/boards/pyboard_v11/mpconfigboard.mk @@ -12,5 +12,5 @@ MCU_VARIANT = stm32f4 MCU_SUB_VARIANT = stm32f405xx MCU_PACKAGE = 64 CMSIS_MCU = STM32F405xx -LD_FILE = boards/STM32F405.ld +LD_FILE = boards/STM32F405_fs.ld |
