Question
stm32f100 Flash Programming strangeness
Posted on August 06, 2012 at 14:38
Hi,
Now I'm using a stm32f100c4t6b processor for an application. The proccessor has 16KB memory. I saved my data like that;#define StartAddr ((u32)0x08007C00)#define EndAddr ((u32)0x08008000)#define FLASH_PAGE_SIZE ((u16)0x400)and I read the data via serial port. No problema.Strangeness is that EndAddr means 32 KB, my processor has 16KB memory (0x4000) but code is working good. What's my fault? Do you have any idea?