old buffer var cleanup
This commit is contained in:
parent
3e73e89d08
commit
86301f7c54
|
|
@ -117,16 +117,12 @@ bool miceActive = false;
|
||||||
|
|
||||||
bool smartBeaconValue = true;
|
bool smartBeaconValue = true;
|
||||||
|
|
||||||
int ackRequestNumber; // numero generado para los request que se pediran
|
int ackRequestNumber;
|
||||||
uint32_t lastMsgRxTime = millis(); // tiempo que se actualiza de cada mensaje recibido
|
bool ackRequestState = false;
|
||||||
bool ackRequestState = false; // activa proceso escucha/espera de ack enviado.
|
String ackCallsignRequest = "";
|
||||||
String ackCallsignRequest = ""; // de quien espero ack
|
String ackNumberRequest = "";
|
||||||
String ackNumberRequest = ""; // cual ack espero
|
uint32_t lastMsgRxTime = millis();
|
||||||
|
|
||||||
//
|
|
||||||
String ackDataExpected = "";
|
|
||||||
uint32_t lastRetryTime = millis();
|
uint32_t lastRetryTime = millis();
|
||||||
//
|
|
||||||
|
|
||||||
uint8_t winlinkStatus = 0;
|
uint8_t winlinkStatus = 0;
|
||||||
String winlinkMailNumber = "_?";
|
String winlinkMailNumber = "_?";
|
||||||
|
|
@ -155,7 +151,7 @@ void setup() {
|
||||||
STATION_Utils::loadIndex(0);
|
STATION_Utils::loadIndex(0);
|
||||||
STATION_Utils::loadIndex(1);
|
STATION_Utils::loadIndex(1);
|
||||||
startupScreen(loraIndex, versionDate);
|
startupScreen(loraIndex, versionDate);
|
||||||
|
|
||||||
MSG_Utils::loadNumMessages();
|
MSG_Utils::loadNumMessages();
|
||||||
GPS_Utils::setup();
|
GPS_Utils::setup();
|
||||||
currentLoRaType = &Config.loraTypes[loraIndex];
|
currentLoRaType = &Config.loraTypes[loraIndex];
|
||||||
|
|
|
||||||
|
|
@ -34,9 +34,7 @@ extern String ackNumberRequest;
|
||||||
extern bool ackRequestState;
|
extern bool ackRequestState;
|
||||||
extern int ackRequestNumber;
|
extern int ackRequestNumber;
|
||||||
|
|
||||||
//
|
|
||||||
extern uint32_t lastTxTime;
|
extern uint32_t lastTxTime;
|
||||||
extern String ackDataExpected;
|
|
||||||
|
|
||||||
extern uint8_t winlinkStatus;
|
extern uint8_t winlinkStatus;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue