Default slots: ITU1_2M: Slot 26 (144.510 MHz) ITU2_2M: Slot 51 (145.010 MHz) ITU3_2M: Slot 33 (144.650 MHz)
17 lines
359 B
C
17 lines
359 B
C
// TODO refactor this out with better radio configuration system
|
|
#ifdef USE_RF95
|
|
|
|
#ifndef RF95_RESET
|
|
#define RF95_RESET LORA_RESET
|
|
#endif
|
|
|
|
#ifndef RF95_IRQ
|
|
#define RF95_IRQ LORA_DIO0 // on SX1262 version this is a no connect DIO0
|
|
#endif
|
|
|
|
#ifndef RF95_DIO1
|
|
#define RF95_DIO1 LORA_DIO1 // Note: not really used for RF95, but used for pure SX127x
|
|
#endif
|
|
|
|
#endif
|