revert to STM32L4S5VI

This commit is contained in:
JuliDi 2023-06-28 15:37:29 +02:00
parent 02f367f733
commit bf7e24e9d7
No known key found for this signature in database
GPG Key ID: E1E90AE563D09D63
2 changed files with 5 additions and 6 deletions

View File

@ -2,8 +2,7 @@
# replace STM32F429ZITx with your chip as listed in `probe-rs-cli chip list` # replace STM32F429ZITx with your chip as listed in `probe-rs-cli chip list`
#runner = "probe-rs-cli run --chip STM32L475VGT6" #runner = "probe-rs-cli run --chip STM32L475VGT6"
#runner = "probe-rs-cli run --chip STM32L475VG" #runner = "probe-rs-cli run --chip STM32L475VG"
#runner = "probe-rs-cli run --chip STM32L4S5VI" runner = "probe-rs-cli run --chip STM32L4S5VI"
runner = "probe-run --chip STM32L432KCUx"
[build] [build]
target = "thumbv7em-none-eabi" target = "thumbv7em-none-eabi"

View File

@ -1,7 +1,7 @@
MEMORY MEMORY
{ {
/* NOTE K = KiBi = 1024 bytes */ /* NOTE 1 K = 1 KiBi = 1024 bytes */
/* TODO Adjust these memory regions to match your device memory layout */ /* These values correspond to the STM32L4S5 */
FLASH : ORIGIN = 0x8000000, LENGTH = 256K FLASH : ORIGIN = 0x08000000, LENGTH = 1024K
RAM : ORIGIN = 0x20000000, LENGTH = 64K RAM : ORIGIN = 0x20000000, LENGTH = 128K
} }