Custom "Installer Assistant" software. Modified Single Sweep Mode. Goes right into single sweep mode upon power-up and displays signal strength. Works with mbed-os 5.1.2 and mdot lib 5.1.5

Dependencies:   DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot-dev-mbed5-deprecated

Fork of MTDOT-BOX-EVB-Factory-Firmware by MultiTech

Committer:
ScottHoppeMultitech
Date:
Thu Dec 28 21:35:48 2017 +0000
Revision:
12:671b15182260
Parent:
7:a31236c2e75c
Custom mDotBox software -modified single sweep mode - goes straight into a single sweep mode and display signal strength. Works With mbed-os 5.1.2 and mdot lib 5.1.5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 7:a31236c2e75c 1 /* Copyright (c) <2016> <MultiTech Systems>, MIT License
Mike Fiore 7:a31236c2e75c 2 *
Mike Fiore 7:a31236c2e75c 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Mike Fiore 7:a31236c2e75c 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
Mike Fiore 7:a31236c2e75c 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
Mike Fiore 7:a31236c2e75c 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Mike Fiore 7:a31236c2e75c 7 * furnished to do so, subject to the following conditions:
Mike Fiore 7:a31236c2e75c 8 *
Mike Fiore 7:a31236c2e75c 9 * The above copyright notice and this permission notice shall be included in all copies or
Mike Fiore 7:a31236c2e75c 10 * substantial portions of the Software.
Mike Fiore 7:a31236c2e75c 11 *
Mike Fiore 7:a31236c2e75c 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Mike Fiore 7:a31236c2e75c 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Mike Fiore 7:a31236c2e75c 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Mike Fiore 7:a31236c2e75c 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Mike Fiore 7:a31236c2e75c 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Mike Fiore 7:a31236c2e75c 17 */
Mike Fiore 7:a31236c2e75c 18
Mike Fiore 7:a31236c2e75c 19 #ifndef __LAYOUTSEMTECHJOIN_H__
Mike Fiore 7:a31236c2e75c 20 #define __LAYOUTSEMTECHJOIN_H__
Mike Fiore 7:a31236c2e75c 21
Mike Fiore 7:a31236c2e75c 22 #include "Layout.h"
Mike Fiore 7:a31236c2e75c 23 #include "mDot.h"
Mike Fiore 7:a31236c2e75c 24
Mike Fiore 7:a31236c2e75c 25 class LayoutSemtechJoin : public Layout {
Mike Fiore 7:a31236c2e75c 26 public:
Mike Fiore 7:a31236c2e75c 27 LayoutSemtechJoin(DOGS102* lcd, uint8_t band);
Mike Fiore 7:a31236c2e75c 28 ~LayoutSemtechJoin();
Mike Fiore 7:a31236c2e75c 29
Mike Fiore 7:a31236c2e75c 30 void display();
Mike Fiore 7:a31236c2e75c 31
Mike Fiore 7:a31236c2e75c 32 void updateId(std::string id);
Mike Fiore 7:a31236c2e75c 33 void updateKey(std::string key);
Mike Fiore 7:a31236c2e75c 34 void updateFsb(uint8_t band);
Mike Fiore 7:a31236c2e75c 35 void updateRate(std::string rate);
Mike Fiore 7:a31236c2e75c 36 void updatePower(uint32_t power);
Mike Fiore 7:a31236c2e75c 37
Mike Fiore 7:a31236c2e75c 38 private:
Mike Fiore 7:a31236c2e75c 39 uint8_t _band;
Mike Fiore 7:a31236c2e75c 40
Mike Fiore 7:a31236c2e75c 41 Label _lId;
Mike Fiore 7:a31236c2e75c 42 Label _lKey;
Mike Fiore 7:a31236c2e75c 43 Label _lFsb;
Mike Fiore 7:a31236c2e75c 44 Label _lRate;
Mike Fiore 7:a31236c2e75c 45 Label _lPower;
Mike Fiore 7:a31236c2e75c 46 Label _lJoin;
Mike Fiore 7:a31236c2e75c 47
Mike Fiore 7:a31236c2e75c 48 Field _fId;
Mike Fiore 7:a31236c2e75c 49 Field _fKey;
Mike Fiore 7:a31236c2e75c 50 Field _fFsb;
Mike Fiore 7:a31236c2e75c 51 Field _fRate;
Mike Fiore 7:a31236c2e75c 52 Field _fPower;
Mike Fiore 7:a31236c2e75c 53 Field _fStatus;
Mike Fiore 7:a31236c2e75c 54 Field _fSubBand;
Mike Fiore 7:a31236c2e75c 55 };
Mike Fiore 7:a31236c2e75c 56
Mike Fiore 7:a31236c2e75c 57 #endif
Mike Fiore 7:a31236c2e75c 58
Mike Fiore 7:a31236c2e75c 59