From 85d8385de1bf88fa0af0581161a6fec0e649253f Mon Sep 17 00:00:00 2001 From: Felix Rusu Date: Sun, 9 Feb 2014 14:23:24 -0500 Subject: [PATCH] fix duplicate 'e' command --- Examples/Gateway/Gateway.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/Gateway/Gateway.ino b/Examples/Gateway/Gateway.ino index df70e7b..64992c5 100644 --- a/Examples/Gateway/Gateway.ino +++ b/Examples/Gateway/Gateway.ino @@ -73,9 +73,9 @@ void loop() { while(flash.busy()); Serial.println(); } - if (input == 'e') + if (input == 'D') { - Serial.print("Erasing Flash chip ... "); + Serial.print("Deleting Flash chip content... "); flash.chipErase(); while(flash.busy()); Serial.println("DONE");