Hello,
This is more of a C question and I am new to Embedded C programming, I have this question.
I want to know how to access the flash memory without fds or fstorage snd by using pointers.
For example, if I use snippet like below,
#define STORAGE_ADR 0x262f0
(uint8_t*)STORAGE_ADR,
1) Is this correct? Or should the hexadecimal be converted into decimal before I feed it into the pointer.
2) I am going to use pointers to write in RAM as well. Is that possible? If yes, should I do that using the &(value to be written)?