MicroLabo / Mbed OS mbed-Dot-AT-Firmware

Dependencies:   MTS-Serial libmDot-mbed5

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