Added EEPROM emulation for STM32F042x6 series processors (#10685)

* Added STM32F042x6 support for EEPROM emulation

* Default to lower stack size on STM32F042

* Moved stack setting

* Re-moved stack definition

* Removed unnecessary check
This commit is contained in:
Adrian
2020-10-22 12:05:01 +02:00
committed by GitHub
parent f9853433c1
commit 120c42255b
3 changed files with 19 additions and 1 deletions

View File

@ -25,6 +25,9 @@
#elif defined(EEPROM_EMU_STM32F072xB)
# define STM32F072xB
# include "stm32f0xx.h"
#elif defined(EEPROM_EMU_STM32F042x6)
# define STM32F042x6
# include "stm32f0xx.h"
#else
# error "not implemented."
#endif