summaryrefslogtreecommitdiff
path: root/Layout
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-12-01 10:28:04 -0600
committerMike Fiore <mfiore@multitech.com>2015-12-01 10:28:04 -0600
commit7f0ba1ea735a0d1619539ba69724fa8679af64b1 (patch)
treee38d502452bd51ddba4cdb9255f1f250cb4eaf05 /Layout
parent37260f2ccff2793f54bfd291169d2c8d879bbc15 (diff)
downloadmtdot-box-evb-factory-firmware-7f0ba1ea735a0d1619539ba69724fa8679af64b1.tar.gz
mtdot-box-evb-factory-firmware-7f0ba1ea735a0d1619539ba69724fa8679af64b1.tar.bz2
mtdot-box-evb-factory-firmware-7f0ba1ea735a0d1619539ba69724fa8679af64b1.zip
got basic sweep implementation working - tested in 915 frequency band
Diffstat (limited to 'Layout')
-rw-r--r--Layout/LayoutSweepComplete.cpp2
-rw-r--r--Layout/LayoutSweepComplete.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/Layout/LayoutSweepComplete.cpp b/Layout/LayoutSweepComplete.cpp
index ab44b7b..f921b3c 100644
--- a/Layout/LayoutSweepComplete.cpp
+++ b/Layout/LayoutSweepComplete.cpp
@@ -6,7 +6,6 @@ LayoutSweepComplete::LayoutSweepComplete(DOGS102* lcd)
_lInfo(0, 1, "Sweep Finished"),
_lPass(0, 5, "Pass"),
_lFail(9, 5, "Fail"),
- _lSw1(11, 7, "Cancel"),
_lSw2(0, 7, "Sweep"),
_fId(2, 0, 5),
_fPass(5, 5, 2),
@@ -23,7 +22,6 @@ void LayoutSweepComplete::display() {
writeLabel(_lInfo);
writeLabel(_lPass);
writeLabel(_lFail);
- writeLabel(_lSw1);
writeLabel(_lSw2);
endUpdate();
diff --git a/Layout/LayoutSweepComplete.h b/Layout/LayoutSweepComplete.h
index 82cf008..221201d 100644
--- a/Layout/LayoutSweepComplete.h
+++ b/Layout/LayoutSweepComplete.h
@@ -18,7 +18,6 @@ class LayoutSweepComplete : public Layout {
Label _lInfo;
Label _lPass;
Label _lFail;
- Label _lSw1;
Label _lSw2;
Field _fId;