Reduced delays to smooth operation

pull/10/head
g7uhn 2020-10-18 15:01:06 +01:00
rodzic 53a478770e
commit b0e3d0bbb7
2 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -482,7 +482,7 @@ bool FT817::readEEPROM()
nextByte = buffer[1];
}
delay(50); // mandatory delay
delay(20); // mandatory delay
}
return eepromValidData;

Wyświetl plik

@ -134,7 +134,7 @@ boolean page1SoftkeyStatus6() {return radio.getNar();}
void setup(void)
{
// Start serial
Serial.begin(9600); // serial port for the main sketch to talk to radio... is this necessary after the refactor?
Serial.begin(9600); // serial port for the main sketch to talk to PC serial monitor
radio.begin(9600); // start the serial port for the CAT library
// Set up some pins
@ -269,7 +269,6 @@ void loop() // MAIN LOOP
if (sw7status == LOW) // PAGE button
{
changePage();
delay(300); // delay prevents series of rapid page changes
sw7status = HIGH; // reset sw7status to high once we've used it
}