removes remaining usb debug stuff

This commit is contained in:
Brendan Haines 2016-12-02 19:43:25 -07:00
parent 34ae6a7f70
commit f748faa6e8

View File

@ -18,8 +18,6 @@
// Low battery light threshold
#define CHG_VLO 3900
#define MAG_SENSE A1
// Keypad pinout
byte rowPins[4] = {5, 10, 9, 7};
byte colPins[3] = {6, 4, 8};
@ -43,7 +41,6 @@ bool dialtoneActive = false;
bool startDialtone = false;
HardwareSerial *fonaSerial = &Serial;
Adafruit_FONA fona = Adafruit_FONA(GSM_RST);
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, 4, 3 );
@ -56,9 +53,6 @@ void inCall() {
while (1) {
if ( !digitalRead(BUT_END) || fona.getCallStatus() < 3 ) { // End button pressed
fona.hangUp();
#ifdef USB_DEBUG
Serial.println("Hanging up");
#endif
break;
}