Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r17cbafeeee71eef9a250142efbdf036c9970c2f4 -rfdeda091d43e144eb63f62189c25b916b2eb5c57 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 17cbafeeee71eef9a250142efbdf036c9970c2f4) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision fdeda091d43e144eb63f62189c25b916b2eb5c57) @@ -53,19 +53,19 @@ // Used 120 and 200 so it will not read or // write during POST static U16 test = 0; - /*if (test == 120) + if (test == 120) { - static U16 data[5] = {7, 8, 9, 1, 22}; - writeToRAM(8, &data[0], 5); + static U16 data[5] = {17, 18, 19, 10, 22}; + writeToRAM(9, &data[0], 5); } if (test == 200) { - readFromRAM(8, 5); - }*/ - if (test == 140) + readFromRAM(9, 5); + } + /*if (test == 140) { setRTCTimestamp(0, 46, 13, 17, 12, 2019); - } + }*/ test++; // FOR DEBUGGING PURPOSES ONLY REMOVE