A newbie using Atmel Tiny 87, using Studio 7
"C:\Program Files\Atmel\Studio\7.0\Vs\Compiler.targets"
...Invoking: AVR/GNU Linker : 4.9.2
#include <avr/pgmspace.h>
const unsigned char array[] PROGMEM = { 0x01, 0x02, 0x03 };
(actual data length is 256 bytes)
Execute 'Build solution' results = Error listed as "multiple definition of array, removing 'const' = error message that 'const' needed with PROGMEM.
My understanding is that AVR storing to Flash space is tricky and that read-back is by &Address pointer?
What's the trick? Thank you.