nimaltd / ee

EEPROM emulation for stm32.
GNU General Public License v3.0
311 stars 74 forks source link

STM32G0 #4

Closed comato closed 4 years ago

comato commented 4 years ago

Nice library... How to use it on STM32G0?

nimaltd commented 4 years ago

Hello. I did not test on G series. But I think work.

comato commented 4 years ago

I tried it with STM32G030 (32KB flash) But in HAL are some differencies, FLASH_TYPEPROGRAM_WORD is changed to FLASH_TYPEPROGRAM_DOUBLEWORD flashErase.PageAddress is changed to flashErase.Page Also I am not sure what is page size (2048 bytes?)

comato commented 4 years ago

it is working, to flashErase.Page is needed to write page number, not addres. Also I changed all /4 4 to /8 8 because DOUBLEWORD ...

leech001 commented 1 year ago

it is working, to flashErase.Page is needed to write page number, not addres. Also I changed all /4 4 to /8 8 because DOUBLEWORD ...

Hi. Can you share your config for STM32G030F6P6?

leech001 commented 1 year ago

Added ability to work with STM32G030xx series #18