The new 7.2.0 soft device works on nrf52833

This commit is contained in:
Kevin Hester
2020-10-28 13:01:50 +08:00
parent 6b838002d4
commit 4ad562b9f4
5 changed files with 16 additions and 12 deletions

View File

@@ -104,7 +104,7 @@ bool NMEAGPS::whileIdle()
// First consume any chars that have piled up at the receiver
while (_serial_gps->available() > 0) {
int c = _serial_gps->read();
DEBUG_MSG("%c", c);
// DEBUG_MSG("%c", c);
isValid |= reader.encode(c);
}

View File

@@ -49,7 +49,7 @@ void getMacAddr(uint8_t *dmac)
NRF52Bluetooth *nrf52Bluetooth;
static bool bleOn = false;
static const bool enableBle = false; // Set to false for easier debugging
static const bool enableBle = true; // Set to false for easier debugging
void setBluetoothEnable(bool on)
{