MultiTech / Mbed OS mDot_AT_firmware_CUSTOM

Dependencies:   libmDot-Custom MTS-Serial

Fork of mDot_AT_firmware_CUSTOM by Jason Reiss

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() : Command("Attention", "AT", "Attention", "NONE")
00004 {
00005 }
00006 
00007 uint32_t CmdAttention::action(std::vector<std::string> args) {
00008     return 0;
00009 }
00010