Hardware Abstraction Layer, permitting any LoRa application to use any LoRa radio chip
Dependents: alarm_slave alarm_master lora_p2p lorawan1v1 ... more
radio chip selection
Radio chip driver is not included, allowing choice of radio device.
If you're using SX1272 or SX1276, then import sx127x driver into your program.
if you're using SX1261 or SX1262, then import sx126x driver into your program.
if you're using SX1280, then import sx1280 driver into your program.
if you're using LR1110, then import LR1110 driver into your program.
If you're using NAmote72 or Murata discovery, then you must import only sx127x driver.
If you're using Type1SJ select target DISCO_L072CZ_LRWAN1
and import sx126x driver into your program.
Pin assigned to arduino LoRa radio shield form-factor
- SX1272 shield.
- SX1276 shield.
- SX126x kit with color touch screen, or sx126x radio-only shield.
- Exceptions with their own pin assignments: NAMote-72 and Murata discovery board.
- TODO: pin assign XDOT.
Diff: radio.h
- Revision:
- 21:96db08266089
- Parent:
- 20:75635d50262e
--- a/radio.h Fri Jul 10 10:52:39 2020 -0700 +++ b/radio.h Fri Feb 05 16:35:05 2021 -0800 @@ -164,6 +164,10 @@ static void txDoneBottom(void); static void timeout_callback(bool); #endif /* SX128x_H */ +#if defined(SX1265_H) + static void my_irq_handler(void); + static bool init_irq; +#endif /* SX1265_H */ static void chipModeChange(void); static void rfsw_callback(void); static void ocp(uint8_t ma);