Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_USB_AT_firmware by
CmdSaveSession.cpp
00001 #include "CmdSaveSession.h" 00002 00003 CmdSaveSession::CmdSaveSession(mDot* dot, mts::MTSSerial& serial) : 00004 Command(dot, "Save Network Session", "AT+SS", "Save network session info to flash"), _serial(serial) 00005 { 00006 _help = std::string(text()) + ": " + std::string(desc()); 00007 } 00008 00009 uint32_t CmdSaveSession::action(std::vector<std::string> args) 00010 { 00011 _dot->saveNetworkSession(); 00012 return 0; 00013 } 00014
Generated on Tue Jul 12 2022 20:37:29 by
1.7.2
