Fixed NRF52 compilation error

This commit is contained in:
jacob.eva 2024-01-20 11:47:24 +00:00
parent 9ef3a0c4b1
commit f4c2fa592d
No known key found for this signature in database
GPG Key ID: 0B92E083BBCCAA1E

View File

@ -99,8 +99,6 @@
#define HAS_PMU false #define HAS_PMU false
#define HAS_NP false #define HAS_NP false
#define HAS_EEPROM false #define HAS_EEPROM false
const int pin_rxen = -1;
const int pin_busy = -1;
#if MCU_VARIANT == MCU_1284P #if MCU_VARIANT == MCU_1284P
const int pin_cs = 4; const int pin_cs = 4;
@ -308,16 +306,17 @@
#define EEPROM_OFFSET EEPROM_SIZE+0xED000-EEPROM_RESERVED #define EEPROM_OFFSET EEPROM_SIZE+0xED000-EEPROM_RESERVED
// following pins are for the sx1262 // following pins are for the sx1262
pin_rxen = 37; const int pin_rxen = 37;
const int pin_reset = 38; const int pin_reset = 38;
const int pin_cs = 42; const int pin_cs = 42;
const int pin_sclk = 43; const int pin_sclk = 43;
const int pin_mosi = 44; const int pin_mosi = 44;
const int pin_miso = 45; const int pin_miso = 45;
pin_busy = 46; const int pin_busy = 46;
const int pin_dio = 47; const int pin_dio = 47;
const int pin_led_rx = LED_BLUE; const int pin_led_rx = LED_BLUE;
const int pin_led_tx = LED_GREEN; const int pin_led_tx = LED_GREEN;
#define RXEN_BUSY_PINS
#endif #endif
#else #else
#error An unsupported board was selected. Cannot compile RNode firmware. #error An unsupported board was selected. Cannot compile RNode firmware.
@ -341,6 +340,11 @@
#endif #endif
// MCU independent configuration parameters // MCU independent configuration parameters
#ifndef RXEN_BUSY_PINS
const int pin_rxen = -1;
const int pin_busy = -1;
#endif
const long serial_baudrate = 115200; const long serial_baudrate = 115200;
// SX1276 RSSI offset to get dBm value from // SX1276 RSSI offset to get dBm value from