Whitespace trunk grousing

This commit is contained in:
Ben Meadors 2024-07-24 21:14:58 -05:00
parent a000a8d347
commit c5f2d2736d
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ ButtonThread::ButtonThread() : OSThread("Button")
int pin = config.device.button_gpio ? config.device.button_gpio : BUTTON_PIN; // Resolved button pin
#if defined(HELTEC_CAPSULE_SENSOR_V3)
this->userButton = OneButton(pin, false, false);
#elif defined(BUTTON_ACTIVE_LOW)
#elif defined(BUTTON_ACTIVE_LOW)
this->userButton = OneButton(pin, BUTTON_ACTIVE_LOW, BUTTON_ACTIVE_PULLUP);
#else
this->userButton = OneButton(pin, true, true);

View File

@ -1180,7 +1180,7 @@ GnssModel_t GPS::probe(int serialSpeed)
_serial_gps->updateBaudRate(serialSpeed);
}
#endif
#ifdef GNSS_AIROHA
#ifdef GNSS_AIROHA
return GNSS_MODEL_UNKNOWN;
#else