1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-26 13:25:54 +00:00

🐛 Fix Flash EEPROM for STM32G0B1CB (#25469)

This commit is contained in:
alextrical 2023-03-05 22:28:50 +00:00 committed by Scott Lahteine
parent aae1102c54
commit 504f09f944
2 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,7 @@
#define FLASH_EEPROM_EMULATION
#endif
#define EEPROM_PAGE_SIZE (0x800UL) // 2K
#define EEPROM_START_ADDRESS (0x0801F800UL)
#define EEPROM_START_ADDRESS (0x8000000UL + (STM32_FLASH_SIZE) * 1024UL - (EEPROM_PAGE_SIZE) * 1UL)
#define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE
#endif

View File

@ -155,6 +155,8 @@
#define SERIAL_UART_INSTANCE 4
#endif
#define FLASH_BANK_NUMBER FLASH_BANK_1
// Default pin used for generic 'Serial' instance
// Mandatory for Firmata
#ifndef PIN_SERIAL_RX