mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-23 03:00:56 +00:00
SX1262 approximately works top-to-bottom, but need to add sleep modes
This commit is contained in:
@@ -17,7 +17,7 @@ class RadioLibInterface : public RadioInterface
|
||||
|
||||
/**
|
||||
* What sort of interrupt do we expect our helper thread to now handle */
|
||||
volatile PendingISR pending;
|
||||
volatile PendingISR pending = ISR_NONE;
|
||||
|
||||
/** Our ISR code currently needs this to find our active instance
|
||||
*/
|
||||
@@ -28,6 +28,11 @@ class RadioLibInterface : public RadioInterface
|
||||
*/
|
||||
static void isrTxLevel0();
|
||||
|
||||
/**
|
||||
* Debugging counts
|
||||
*/
|
||||
uint32_t rxBad = 0, rxGood = 0, txGood = 0;
|
||||
|
||||
protected:
|
||||
float bw = 125;
|
||||
uint8_t sf = 9;
|
||||
|
||||
Reference in New Issue
Block a user