Hi,
I have a code where I have this array:
long test[2][100];
I store many data inside this array. The problem is that now I made a small change in my code and everything stopped working. Adding the following line at the bottom end of my loop() function makes arduino "crazy", it does not work, does not print the serial data...
if (true) {
Serial.println("test");
}
Why just adding this code to my previous code makes it not work anymore?