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.
Fork of mDot_AT_firmware by
CmdRestoreSession.cpp
00001 #include "CmdRestoreSession.h" 00002 00003 CmdRestoreSession::CmdRestoreSession() : 00004 #if MTS_CMD_TERM_VERBOSE 00005 Command("Restore Network Session", "AT+RS", "Restore network session info from flash", "NONE") 00006 #else 00007 Command("AT+RS") 00008 #endif 00009 { 00010 } 00011 00012 uint32_t CmdRestoreSession::action(const std::vector<std::string>& args) 00013 { 00014 CommandTerminal::Dot()->restoreNetworkSession(); 00015 return 0; 00016 } 00017
Generated on Wed Jan 15 2025 16:10:47 by
1.7.2


