User Activity

My code as a below;void EEPROM_WriteByte(unsigned int address, unsigned char value){ FLASH->DUKR = 0xAE; FLASH->DUKR = 0x56; (*(uint8_t *)(0x9FC0 + address)) = value; FLASH->IAPSR &= FLASH_MemType_Data;}unsigned char EEPROM_ReadByte(unsig...