summaryrefslogtreecommitdiff
path: root/Layout/LayoutSurveyFailure.h
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-12-01 15:11:03 -0600
committerMike Fiore <mfiore@multitech.com>2015-12-01 15:11:03 -0600
commit4a7ab715f7115460892927b998b2c45828f275d6 (patch)
tree4b5be7037a4c5b7bd6f54cdb6a0ceb16d498294a /Layout/LayoutSurveyFailure.h
parent98e68d87d69d961eb41cf4a5ba21e1b2ac430615 (diff)
downloadmtdot-box-evb-factory-firmware-4a7ab715f7115460892927b998b2c45828f275d6.tar.gz
mtdot-box-evb-factory-firmware-4a7ab715f7115460892927b998b2c45828f275d6.tar.bz2
mtdot-box-evb-factory-firmware-4a7ab715f7115460892927b998b2c45828f275d6.zip
update progress and pass/fail for sweep
Diffstat (limited to 'Layout/LayoutSurveyFailure.h')
-rw-r--r--Layout/LayoutSurveyFailure.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/Layout/LayoutSurveyFailure.h b/Layout/LayoutSurveyFailure.h
index 473fd9f..ca6aebd 100644
--- a/Layout/LayoutSurveyFailure.h
+++ b/Layout/LayoutSurveyFailure.h
@@ -12,22 +12,27 @@ class LayoutSurveyFailure : public Layout {
void updateId(uint32_t id);
void updateRate(std::string rate);
void updatePower(uint32_t power);
- void updateInfo(std::string msg);
+ void updateInfo1(std::string msg);
+ void updateInfo2(std::string msg);
+ void updatePassFail(uint8_t pass, uint8_t fail);
+ void updateSw1(std::string sw1);
+ void updateSw2(std::string sw2);
private:
Label _lTitle;
Label _lId;
Label _lDr;
Label _lPwr;
- Label _lSw1;
- Label _lSw2;
Field _fId;
Field _fDr;
Field _fPwr;
Field _fMsg1;
Field _fMsg2;
- Field _fInfo;
+ Field _fInfo1;
+ Field _fInfo2;
+ Field _fSw1;
+ Field _fSw2;
};
#endif