Question
Question about redefinition
Hi all,
just a short question:
Why does the compiler say that the page is redefined?
#define ADDR_FLASH_PAGE_148 ((uint32_t)0x0804A000)
#define ADDR_FLASH_PAGE_149 ((uint32_t)0x0804A800)Same page but with small letters and that's ok for the compiler.
#define ADDR_FLASH_PAGE_148 ((uint32_t)0x0804a000)
#define ADDR_FLASH_PAGE_149 ((uint32_t)0x0804a800)I've got hundreds of warnings within my defines beacuse of that.
Can anyone explain that to me?
Regards,
Enrico