AT Command Set mDot firmware with updated libmDot, to fix endian problem with joining LoRaWAN network

Dependencies:   MTS-Serial libmDot mbed-rtos mbed-src

Fork of mDot_AT_firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdAttention.cpp Source File

CmdAttention.cpp

00001 #include "CmdAttention.h"
00002 
00003 CmdAttention::CmdAttention(mDot* dot) : Command(dot, "Attention", "AT", "Attention") 
00004 {
00005     _help = std::string(text()) + ": " + std::string(desc());
00006 }
00007 
00008 CmdAttention::CmdAttention(mDot* dot, const char* name, const char* text, const char* desc) : Command(dot, name, text, desc)
00009 {
00010     
00011 }
00012 
00013 uint32_t CmdAttention::action(std::vector<std::string> args) {
00014     return 0;
00015 }
00016