Hi, I have an array
unsigned char tekena [5][5] PROGMEM = {{0,1,1,1,1},{1,0,1,0,0},{1,0,1,0,0},{0,1,1,1,1},{0,0,0,0,0}};
unsigned char tekenb [5][5] PROGMEM = {{1,1,1,1,1},{1,0,1,0,1},{1,0,1,0,1},{0,1,0,1,0},{0,0,0,0,0}};
unsigned char tekenc [5][5] PROGMEM = {{0,1,1,1,0},{1,0,0,0,1},{1,0,0,0,1},{0,0,0,0,0},{0,0,0,0,0}};
During my code i want to fill another array which is defined as
unsigned char Text [50][5][5];
so how do i copy the complete array from progmem to the other array without reading and writing every value independently
Kind regards
Johan