From: Borja F. <bor...@gm...> - 2012-03-15 20:01:55
|
Ok I've finished working on all this. Native english speakers check out these strings for a more formal way of saying the following: 1) Cannot write to flash memory. <-- emitted when trying to assign a value to a flash var 2) Flash variables are read only and should be declared with a const qualifier. <-- emitted when doing something like __flash int, we want __flash const int 3) The pointee type of a flash pointer should be declared with a const qualifier. <-- i cant think of a better way of saying it, this is emitted when doing __flash int* ptr, we want __flash const int *ptr. Again, if anybody can think of any other sanity checks, list them here. Once these strings are verified i'll commit my work. |