SAMD compiler fixes
This commit is contained in:
@@ -33,7 +33,7 @@ Copyright (c) 20xx, MPL Contributor1 contrib1@example.net
|
|||||||
#error please select hardware
|
#error please select hardware
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
volatile RadioNode radioNode;
|
RadioNode radioNode;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Main defines for device working in TX mode
|
* Main defines for device working in TX mode
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ class RadioNode {
|
|||||||
void handleChannelDwell(void);
|
void handleChannelDwell(void);
|
||||||
void handleTxDoneState();
|
void handleTxDoneState();
|
||||||
void handleTx(QspConfiguration_t *qsp);
|
void handleTx(QspConfiguration_t *qsp);
|
||||||
int8_t bytesToRead = -1;
|
volatile int8_t bytesToRead = -1;
|
||||||
uint8_t deviceState = RADIO_STATE_RX;
|
volatile uint8_t deviceState = RADIO_STATE_RX;
|
||||||
uint8_t rssi = 0;
|
uint8_t rssi = 0;
|
||||||
uint8_t snr = 0;
|
uint8_t snr = 0;
|
||||||
uint8_t lastReceivedChannel = 0;
|
uint8_t lastReceivedChannel = 0;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
#include "tactile.h"
|
#include "tactile.h"
|
||||||
#include "radio_node.h"
|
#include "radio_node.h"
|
||||||
|
|
||||||
extern volatile RadioNode radioNode;
|
extern RadioNode radioNode;
|
||||||
|
|
||||||
enum txOledPages {
|
enum txOledPages {
|
||||||
TX_PAGE_NONE,
|
TX_PAGE_NONE,
|
||||||
|
|||||||
Reference in New Issue
Block a user