// Open the file to write the data to. If it doesn't exist it will be created.
// Unlike elsewhere, FILE_WRITE opens the file with the cursor starting at the end, so it's basically actually equivalent to FILE_APPEND that we use in other environments. Confusing, I know.
Filehandle=SD.open(SD_FILENAME,FILE_WRITE);
@ -36,7 +31,3 @@ void store_debug(char* buffer, int size) {
@@ -36,7 +31,3 @@ void store_debug(char* buffer, int size) {