Other Parts Discussed in Thread: UNIFLASH
Hello,
I need to read the content of a FLASH address. I want to verify that this sector is erased or not. I try with this code
if( (Uint16*)0x337FFE == 0xFFFF){
...
}
and the compiler returns me #43 operand types are incompatible ("Uint16 *" and "unsigned int"). How I can to do that? thanks!!