diff options
author | Karl Palsson <karlp@tweak.net.au> | 2022-01-30 17:38:47 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2022-04-16 21:37:28 +0200 |
commit | bf0747518509e4139c14f89162cfa50b2bf576ae (patch) | |
tree | 7d74c6f899b9222a930bfc8b3ac7c4e5133ab752 | |
parent | 1d1072825c0c2cfaecae74f93a9ede50bbfefa31 (diff) |
platform: stm32l4: more variants
Will need more work though, as there's L476xC with 256K flash, 128K ram,
and L432xC with 256K flash, 64K ram. But that's tomorrow's problem, I'm
using a 476xG...
Signed-off-by: Karl Palsson <karlp@tweak.net.au>
-rw-r--r-- | platforms/stm32/l4.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/platforms/stm32/l4.yaml b/platforms/stm32/l4.yaml index 98e2739..95cccef 100644 --- a/platforms/stm32/l4.yaml +++ b/platforms/stm32/l4.yaml @@ -12,6 +12,26 @@ origin: 0x08000000 size: 256k +- match: + mem: e + mem: + flash: + origin: 0x08000000 + size: 512k + ram: + origin: 0x20000000 + size: 128k + +- match: + mem: g + mem: + flash: + origin: 0x08000000 + size: 1024k + ram: + origin: 0x20000000 + size: 128k + - mem: ram: origin: 0x20000000 |