Question
Adress Type (Flash Memory)
Posted on January 13, 2012 at 10:23
Hi,
I want to read all the datas of the Flash Memory on STM32F103RB// Adress start value = 0x08000000 ,end value = 0x0801FFFF;while(Adress != 0x0801FFF) { FLASH_Unlock(); Data=*((uint16_t *) Adres); //read at 0x08000000 flash memory address FLASH_Lock(); Adres=Adres+2; USART_SendData(USART2,Data); }When this program runs, Adress data turns decimal type and i can't see the values .What can i do for describing Adress's data type to increasing hexadecimal type ?