summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorRyan Klaassen <ryan.klaassen@multitech.com>2016-08-08 12:11:22 -0500
committerRyan Klaassen <ryan.klaassen@multitech.com>2016-08-08 12:11:22 -0500
commit09a46d7b25c72cae37a1674f0e3797e4ed0b69b4 (patch)
tree4f63f1ce9eaa2dfe8a44466286a4b50260e175f4 /main.cpp
parent8697ebad4fa5cc1b223cd8bc6c7ebd833dfcee79 (diff)
downloadmtdot-box-evb-factory-firmware-09a46d7b25c72cae37a1674f0e3797e4ed0b69b4.tar.gz
mtdot-box-evb-factory-firmware-09a46d7b25c72cae37a1674f0e3797e4ed0b69b4.tar.bz2
mtdot-box-evb-factory-firmware-09a46d7b25c72cae37a1674f0e3797e4ed0b69b4.zip
Replace main.cpp
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 9166354..48b3552 100644
--- a/main.cpp
+++ b/main.cpp
@@ -41,6 +41,7 @@
#include "ModeSweep.h"
#include "ModeDemo.h"
#include "ModeConfig.h"
+#include "ModeSemtech.h"
// misc heders
#include "FileName.h"
#include <string>
@@ -76,6 +77,7 @@ ModeSingle* modeSingle;
ModeSweep* modeSweep;
ModeDemo* modeDemo;
ModeConfig* modeConfig;
+ModeSemtech* modeSemtech;
// Serial debug port
Serial debug(USBTX, USBRX);
@@ -111,6 +113,7 @@ int main() {
modeSweep = new ModeSweep(lcd, buttons, dot, lora, gps, sensors);
modeDemo = new ModeDemo(lcd, buttons, dot, lora, gps, sensors);
modeConfig = new ModeConfig(lcd, buttons, dot, lora, gps, sensors);
+ modeSemtech = new ModeSemtech(lcd, buttons, dot, lora, gps, sensors);
osDelay(1000);
logInfo("%sGPS detected", gps->gpsDetected() ? "" : "no ");
@@ -136,7 +139,8 @@ void mainMenu() {
demo = 1,
config,
single,
- sweep
+ sweep,
+ semtech
} menu_items;
std::string menu_strings[] = {
@@ -144,7 +148,8 @@ void mainMenu() {
"LoRa Demo",
"Configuration",
"Survey Single",
- "Survey Sweep"
+ "Survey Sweep",
+ "Semtech"
};
std::vector<std::string> items;
@@ -152,6 +157,7 @@ void mainMenu() {
items.push_back(menu_strings[config]);
items.push_back(menu_strings[single]);
items.push_back(menu_strings[sweep]);
+ items.push_back(menu_strings[semtech]);
while (true) {
product = "MTDOT-BOX/EVB ";
@@ -195,8 +201,14 @@ void mainMenu() {
if (modeJoin->start())
modeSweep->start();
}
+ else if (selected == menu_strings[semtech]) {
+ if(dot->getFrequencyBand()==mDot::FB_868)modeJoin->start();
+ modeSemtech->start();
+ }
mode_selected = false;
}
}
+
+