few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
Diff: CommandTerminal/CmdRxOutput.cpp
- Revision:
- 9:ff62b20f7000
- Parent:
- 1:e52ae6584f1c
--- a/CommandTerminal/CmdRxOutput.cpp Mon Apr 04 13:17:44 2016 +0000 +++ b/CommandTerminal/CmdRxOutput.cpp Mon Apr 04 09:00:31 2016 -0500 @@ -23,8 +23,8 @@ uint8_t output = args[1] == "0" ? 0 : 1; if ((code = _dot->setRxOutput(output)) != mDot::MDOT_OK) { - std::string error = mDot::getReturnCodeString(code) + " - " + _dot->getLastError(); - setErrorMessage(error); + + setErrorMessage(_dot->getLastError());; return 1; } }