| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #include <Arduino.h>
- #include "target.h"
- #include <helpers/sensors/MicroNMEALocationProvider.h>
- ThinkNodeM3Board board;
- RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY, SPI);
- WRAPPER_CLASS radio_driver(radio, board);
- VolatileRTCClock fallback_clock;
- AutoDiscoverRTCClock rtc_clock(fallback_clock);
- #ifdef ENV_INCLUDE_GPS
- MicroNMEALocationProvider nmea = MicroNMEALocationProvider(Serial1, &rtc_clock);
- EnvironmentSensorManager sensors = EnvironmentSensorManager(nmea);
- #else
- EnvironmentSensorManager sensors = EnvironmentSensorManager();
- #endif
- #ifdef DISPLAY_CLASS
- NullDisplayDriver display;
- #endif
- #ifndef LORA_CR
- #define LORA_CR 5
- #endif
- #ifdef RF_SWITCH_TABLE
- static const uint32_t rfswitch_dios[Module::RFSWITCH_MAX_PINS] = {
- RADIOLIB_LR11X0_DIO5,
- RADIOLIB_LR11X0_DIO6,
- RADIOLIB_NC,
- RADIOLIB_NC,
- RADIOLIB_NC
- };
- static const Module::RfSwitchMode_t rfswitch_table[] = {
- // mode DIO5 DIO6
- { LR11x0::MODE_STBY, {LOW , LOW }},
- { LR11x0::MODE_RX, {HIGH, LOW }},
- { LR11x0::MODE_TX, {HIGH, HIGH }},
- { LR11x0::MODE_TX_HP, {LOW , HIGH }},
- { LR11x0::MODE_TX_HF, {LOW , LOW }},
- { LR11x0::MODE_GNSS, {LOW , LOW }},
- { LR11x0::MODE_WIFI, {LOW , LOW }},
- END_OF_MODE_TABLE,
- };
- #endif
- bool radio_init() {
- rtc_clock.begin(Wire);
- #ifdef LR11X0_DIO3_TCXO_VOLTAGE
- float tcxo = LR11X0_DIO3_TCXO_VOLTAGE;
- #else
- float tcxo = 1.6f;
- #endif
- SPI.setPins(P_LORA_MISO, P_LORA_SCLK, P_LORA_MOSI);
- SPI.begin();
- int status = radio.begin(LORA_FREQ, LORA_BW, LORA_SF, LORA_CR, RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, LORA_TX_POWER, 16, tcxo);
- if (status != RADIOLIB_ERR_NONE) {
- Serial.print("ERROR: radio init failed: ");
- Serial.println(status);
- return false; // fail
- }
- radio.setCRC(2);
- radio.explicitHeader();
- #ifdef RF_SWITCH_TABLE
- radio.setRfSwitchTable(rfswitch_dios, rfswitch_table);
- #endif
- #ifdef RX_BOOSTED_GAIN
- radio.setRxBoostedGainMode(RX_BOOSTED_GAIN);
- #endif
- return true; // success
- }
- mesh::LocalIdentity radio_new_identity() {
- RadioNoiseListener rng(radio);
- return mesh::LocalIdentity(&rng); // create new random identity
- }
|