Reduce flash size to have space for calibration data

Signed-off-by: fly <merspieler@alwaysdata.com>
This commit is contained in:
fly 2024-04-30 22:28:11 +02:00
parent de552cad42
commit 0f20037433

View file

@ -1,6 +1,7 @@
/* Linker script for the STM32F103C8T6 */
MEMORY
{
FLASH : ORIGIN = 0x08000000, LENGTH = 64K
RAM : ORIGIN = 0x20000000, LENGTH = 20K
/* We only use 63KiB so we have 1KiB free for calibration data */
FLASH : ORIGIN = 0x08000000, LENGTH = 63K
RAM : ORIGIN = 0x20000000, LENGTH = 20K
}