enum TState{notpressed, prepressed, pressed, longpressed, released};
struct SingleKey
{
byte worked;
byte count;
enum TState state;
};
__flash struct SingleKey Keys[4][4];
int main( void )
{
Keys[1][1].count=1;
}
И получаю : Cannot write to flash memory.

Может забыл чего в Опциях ?!
Буду благодарен за помощь !