Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Firmware/LoRaSerial/LoRaSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ unsigned long retransmitTimeout = 0; //Throttle back re-transmits
//Global variables
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
const Settings defaultSettings;
Settings settings; //Active settings used by the radio
Settings tempSettings; //Create a duplicate of settings during training so that we can resort as needed

char platformPrefix[25]; //Used for printing platform specific device name, ie "SAMD21 1W 915MHz"
Expand Down
3 changes: 1 addition & 2 deletions Firmware/LoRaSerial/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ typedef enum
RADIO_DISCOVER_SCANNING,
RADIO_DISCOVER_WAIT_TX_FIND_PARTNER_DONE,
RADIO_DISCOVER_STANDBY,

//Multi-Point: Datagrams
RADIO_MP_STANDBY,
RADIO_MP_WAIT_TX_DONE,
Expand Down Expand Up @@ -518,7 +518,6 @@ typedef struct struct_settings {
//-- Add commands to set the parameters
//-- Add parameters to routine updateRadioParameters
} Settings;
Settings settings;

//Monitor which devices on the device are on or offline.
struct struct_online {
Expand Down