From 828e3ccb2a3f3fc916609ff8fbbca6faaffc9365 Mon Sep 17 00:00:00 2001 From: Brian Peek <2321675+BrianPeek@users.noreply.github.com> Date: Sat, 24 Dec 2022 16:30:28 -0700 Subject: [PATCH] remove mirror copy --- src/teensy/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/teensy/main.cpp b/src/teensy/main.cpp index dbe9503..fb8087d 100644 --- a/src/teensy/main.cpp +++ b/src/teensy/main.cpp @@ -49,10 +49,6 @@ void readData(Stream* s) } while(read != 0); - // on GG (and lynx?) top address bit gets stuck high (?) so mirror to upper region too? - if(total == 131072) - memcpy(p, buffer, 131072); - SD.remove(filename); File f = SD.open(filename, O_WRITE);