The compiler allow me to define a pointer like this:
byte* ptr = &ADCSRA;
ADCSRA is hardware register in the ADC of the 328P chip. Can this kind of register be considered as memory mapped in the same way as RAM or Flash code memory?
The compiler allow me to define a pointer like this:
byte* ptr = &ADCSRA;
ADCSRA is hardware register in the ADC of the 328P chip. Can this kind of register be considered as memory mapped in the same way as RAM or Flash code memory?