Custom Channel Plan version of MTDOT Box firmware

Dependencies:   DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot-Custom mDot_Channel_Plans

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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LoRaHandler.h Source File

LoRaHandler.h

00001 /* Copyright (c) <2016> <MultiTech Systems>, MIT License
00002  *
00003  * Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
00004  * and associated documentation files (the "Software"), to deal in the Software without restriction, 
00005  * including without limitation the rights to use, copy, modify, merge, publish, distribute, 
00006  * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is 
00007  * furnished to do so, subject to the following conditions:
00008  *
00009  * The above copyright notice and this permission notice shall be included in all copies or 
00010  * substantial portions of the Software.
00011  *
00012  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING 
00013  * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
00014  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
00015  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
00016  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00017  */
00018 
00019 #ifndef __LORAHANDLER_H__
00020 #define __LORAHANDLER_H__
00021 
00022 #include "mDot.h"
00023 
00024 #define loraSignal (int32_t)0x02
00025 
00026 class LoRaHandler {
00027     public:
00028         typedef enum {
00029             none = 0,
00030             busy,
00031             link_check_success,
00032             send_success,
00033             join_success,
00034             link_check_failure,
00035             send_failure,
00036             join_failure
00037         } LoRaStatus;
00038 
00039         typedef struct {
00040             bool status;
00041             mDot::link_check up;
00042             mDot::ping_response down;
00043         } LoRaLink;
00044 
00045         typedef enum {
00046             green = 0,
00047             red
00048         } LedColor;
00049 
00050         LoRaHandler(osThreadId main);
00051         ~LoRaHandler();
00052 
00053         bool linkCheck();
00054         bool send(std::vector<uint8_t> data);
00055         bool join();
00056         bool action(uint8_t cmd);
00057         LoRaStatus getStatus();
00058         LoRaLink getLinkCheckResults();
00059         uint32_t getJoinAttempts();
00060         void resetJoinAttempts();
00061         void blinker();
00062         void resetActivityLed();
00063 
00064         osThreadId _main;
00065         Thread _thread;
00066         LoRaStatus _status;
00067         LoRaLink _link;
00068         mDot* _dot;
00069         Mutex _mutex;
00070         uint32_t _join_attempts;
00071         DigitalInOut _activity_led;
00072         Ticker _tick;
00073 };
00074 
00075 #endif
00076