Initial support for SX1276/8 with TCXO

This commit is contained in:
Mark Qvist 2024-01-19 00:10:24 +01:00
parent 9206a3b9d9
commit 6cdb4e4cf0
3 changed files with 25 additions and 1 deletions

View file

@ -72,6 +72,11 @@ void setup() {
pinMode(pin_led_tx, OUTPUT);
#endif
#if HAS_TCXO == true
pinMode(pin_tcxo_enable, OUTPUT);
digitalWrite(pin_tcxo_enable, HIGH);
#endif
// Initialise buffers
memset(pbuf, 0, sizeof(pbuf));
memset(cmdbuf, 0, sizeof(cmdbuf));