Further tidy up of STM32 eeprom emulation (#14591)

This commit is contained in:
Joel Challis 2021-10-16 02:58:48 +01:00 committed by GitHub
parent 5c6a8f599f
commit 83e978da1f
Failed to generate hash of commit
3 changed files with 10 additions and 38 deletions

View file

@ -138,6 +138,11 @@ ifneq ($(findstring STM32F042, $(MCU)),)
# UF2 settings
UF2_FAMILY ?= STM32F0
# Stack sizes: Since this chip has limited RAM capacity, the stack area needs to be reduced.
# This ensures that the EEPROM page buffer fits into RAM
USE_PROCESS_STACKSIZE = 0x600
USE_EXCEPTIONS_STACKSIZE = 0x300
endif
ifneq ($(findstring STM32F072, $(MCU)),)