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 MTS-Cellular by
Diff: Cellular/UIP.cpp
- Revision:
- 11:4e428f689069
- Parent:
- 10:c188cc05aed5
- Child:
- 13:e443e7e2b605
--- a/Cellular/UIP.cpp Wed May 21 15:45:05 2014 -0500 +++ b/Cellular/UIP.cpp Thu May 22 09:26:51 2014 -0500 @@ -6,8 +6,9 @@ using namespace mts; -UIP::UIP() +UIP::UIP(Radio type) { + this->type = type; io = NULL; dcd = NULL; dtr = NULL; @@ -43,6 +44,7 @@ reset(); test(); + logDebug("radio: %s", Cellular::getRadioNames(type).data()); return true; }