summaryrefslogtreecommitdiff
path: root/Mode/ModeSingle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Mode/ModeSingle.cpp')
-rw-r--r--Mode/ModeSingle.cpp108
1 files changed, 94 insertions, 14 deletions
diff --git a/Mode/ModeSingle.cpp b/Mode/ModeSingle.cpp
index 75bcdb9..5609bab 100644
--- a/Mode/ModeSingle.cpp
+++ b/Mode/ModeSingle.cpp
@@ -19,13 +19,10 @@ bool ModeSingle::start() {
bool send_data = false;
bool no_channel_ping = false;
bool no_channel_data = false;
- LoRaHandler::LoRaPing ping_result;
// clear any stale signals
osSignalClear(_main_id, buttonSignal | loraSignal);
- _sub_band = _dot->getFrequencySubBand();
-
// see if we're supposed to send the data packet after success
// that item is stored in the mDot::StartUpMode config field
_send_data = _dot->getStartUpMode();
@@ -33,7 +30,7 @@ bool ModeSingle::start() {
// see if survey data file exists
std::vector<mDot::mdot_file> files = _dot->listUserFiles();
for (std::vector<mDot::mdot_file>::iterator it = files.begin(); it != files.end(); it++) {
- if (it->name == _file_name) {
+ if (strcmp(it->name, _file_name) == 0) {
logInfo("found survey data file");
data_file = true;
break;
@@ -94,6 +91,7 @@ bool ModeSingle::start() {
break;
case confirm:
_state = show_help;
+ logInfo("deleting survey data file");
_dot->deleteUserFile(_file_name);
_index = 0;
displayHelp();
@@ -145,16 +143,21 @@ bool ModeSingle::start() {
case show_help:
break;
case in_progress:
- _state = success;
- ping_result = _lora->getPingResults();
- _success.display();
- _success.updateId(_index);
- // mDot::DataRateStr returns format SF_XX - we only want to display the XX part
- _success.updateRate(_dot->DataRateStr(_data_rate).substr(3));
- _success.updatePower(_power);
- _success.updateStats(ping_result);
- _success.updateInfo("No GPS Lock");
- _success.updateSw2("Survey");
+ _ping_result = _lora->getPingResults();
+ displaySuccess();
+ updateData(_data, single, true);
+ appendDataFile(_data);
+ if (_send_data) {
+ _state = data;
+ if (_lora->getNextTx() > 0)
+ no_channel_data = true;
+ else
+ send_data = true;
+ } else {
+ _state = success;
+ _success.updateSw1(" Power");
+ _success.updateSw2("Survey");
+ }
break;
case success:
break;
@@ -179,6 +182,8 @@ bool ModeSingle::start() {
_failure.updateId(_index);
// mDot::DataRateStr returns format SF_XX - we only want to display the XX part
_success.updateRate(_dot->DataRateStr(_data_rate).substr(3));
+ updateData(_data, single, false);
+ appendDataFile(_data);
_failure.updatePower(_power);
break;
case success:
@@ -189,6 +194,52 @@ bool ModeSingle::start() {
break;
}
break;
+
+ case LoRaHandler::send_success:
+ switch (_state) {
+ case check_file:
+ break;
+ case confirm:
+ break;
+ case show_help:
+ break;
+ case in_progress:
+ break;
+ case success:
+ break;
+ case data:
+ _state = success;
+ _success.updateInfo("Data Send Success");
+ _success.updateSw1(" Power");
+ _success.updateSw2("Survey");
+ break;
+ case failure:
+ break;
+ }
+ break;
+
+ case LoRaHandler::send_failure:
+ switch (_state) {
+ case check_file:
+ break;
+ case confirm:
+ break;
+ case show_help:
+ break;
+ case in_progress:
+ break;
+ case success:
+ break;
+ case data:
+ _state = success;
+ _success.updateInfo("Data Send Failure");
+ _success.updateSw1(" Power");
+ _success.updateSw2("Survey");
+ break;
+ case failure:
+ break;
+ }
+ break;
}
}
}
@@ -205,6 +256,15 @@ bool ModeSingle::start() {
}
}
if (no_channel_data) {
+ uint32_t t = _lora->getNextTx();
+ if (t > 0) {
+ logInfo("next tx %lu ms", t);
+ _success.updateCountdown(t / 1000);
+ } else {
+ displaySuccess();
+ no_channel_ping = false;
+ send_ping = true;
+ }
}
if (send_ping) {
logInfo("sending ping");
@@ -215,6 +275,12 @@ bool ModeSingle::start() {
_index++;
}
if (send_data) {
+ std::vector<uint8_t> s_data;
+ logInfo("sending data");
+ _success.updateInfo("Data Sending...");
+ _lora->setDataRate(_data_rate);
+ _lora->setPower(_power);
+ _lora->send(s_data);
}
}
}
@@ -226,6 +292,20 @@ void ModeSingle::displayHelp() {
_help.updateSw2("Survey");
}
+void ModeSingle::displaySuccess() {
+ _success.display();
+ _success.updateId(_index);
+ // mDot::DataRateStr returns format SF_XX - we only want to display the XX part
+ _success.updateRate(_dot->DataRateStr(_data_rate).substr(3));
+ _success.updatePower(_power);
+ _success.updateStats(_ping_result);
+ // if GPS lock
+ // display GPS latitude, longitude, and time
+ // else
+ // display "no lock"
+ _success.updateInfo("No GPS Lock");
+}
+
std::string ModeSingle::formatNewRatePower() {
std::string msg;
char buf[8];