Merge pull request #56 from jacobeva/master

Fix nRF52 compilation error
This commit is contained in:
markqvist 2024-01-21 19:00:49 +01:00 committed by GitHub
commit 5bdbfd09cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -330,6 +330,7 @@
const int pin_dio = 47;
const int pin_led_rx = LED_BLUE;
const int pin_led_tx = LED_GREEN;
const int pin_tcxo_enable = -1;
#endif
#else
#error An unsupported board was selected. Cannot compile RNode firmware.

View File

@ -73,8 +73,10 @@ void setup() {
#endif
#if HAS_TCXO == true
pinMode(pin_tcxo_enable, OUTPUT);
digitalWrite(pin_tcxo_enable, HIGH);
if (pin_tcxo_enable != -1) {
pinMode(pin_tcxo_enable, OUTPUT);
digitalWrite(pin_tcxo_enable, HIGH);
}
#endif
// Initialise buffers