mirror of https://github.com/wolfSSL/wolfBoot.git
Cleanups from testing.
parent
52e62688e0
commit
7b5012b374
|
@ -11,6 +11,8 @@ NO_ASM?=0
|
|||
NO_MPU=1
|
||||
EXT_FLASH?=0
|
||||
SPI_FLASH?=0
|
||||
QSPI_FLASH?=0
|
||||
OCTOSPI_FLASH?=0
|
||||
ALLOW_DOWNGRADE?=0
|
||||
NVM_FLASH_WRITEONCE?=1
|
||||
WOLFBOOT_VERSION?=1
|
||||
|
|
|
@ -357,9 +357,7 @@ ST-LINK_gdbserver -d -cp /opt/st/stm32cubeide_1.3.0/plugins/com.st.stm32cube.ide
|
|||
Max OS/X:
|
||||
|
||||
```sh
|
||||
sudo ln -s /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.macos64_1.6.0.202101291314/tools/bin/native/mac_x64/libSTLinkUSBDriver.dylib /usr/local/lib/libSTLinkUSBDriver.dylib
|
||||
|
||||
/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.macos64_1.6.0.202101291314/tools/bin/ST-LINK_gdbserver -d -cp ./Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.cubeprogrammer.macos64_1.6.0.202101291314/tools/bin -e -r 1 -p 3333
|
||||
/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.macos64_2.1.300.202403291623/tools/bin/ST-LINK_gdbserver -d -cp /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.cubeprogrammer.macos64_2.1.201.202404072231/tools/bin -e -r 1 -p 3333
|
||||
```
|
||||
|
||||
Win:
|
||||
|
@ -374,6 +372,7 @@ wolfBoot has a .gdbinit to configure
|
|||
add-symbol-file test-app/image.elf
|
||||
```
|
||||
|
||||
|
||||
## STM32L0
|
||||
|
||||
Example 192KB partitioning on STM32-L073
|
||||
|
|
|
@ -51,7 +51,9 @@
|
|||
#define OCTOSPI1_BASE (PERIPH_BASE + 0x020D1400UL)
|
||||
#define OCTOSPI2_BASE (PERIPH_BASE + 0x020D2400UL)
|
||||
|
||||
#ifndef OCTOSPI_BASE
|
||||
#define OCTOSPI_BASE OCTOSPI2_BASE
|
||||
#endif
|
||||
|
||||
/* Registers mapping */
|
||||
#define APB2PERIPH_BASE (PERIPH_BASE + 0x00012C00UL)
|
||||
|
|
Loading…
Reference in New Issue