Initial examples for STM32L4+

This commit is contained in:
Bob McWhirter
2021-06-08 10:36:47 -04:00
parent b8690e5f5d
commit cf3c021c37
5 changed files with 230 additions and 2 deletions

View File

@ -2,6 +2,6 @@ MEMORY
{
/* NOTE 1 K = 1 KiBi = 1024 bytes */
/* These values correspond to the STM32L4S5 */
FLASH : ORIGIN = 0x08000000, LENGTH = 2048K
RAM : ORIGIN = 0x20000000, LENGTH = 640K
FLASH : ORIGIN = 0x08000000, LENGTH = 1024K
RAM : ORIGIN = 0x20000000, LENGTH = 128K
}