mirror of https://github.com/ARMmbed/mbed-os.git
Removed mux comments from code.
parent
dc87629641
commit
9e2da6af7d
|
@ -53,7 +53,6 @@ public:
|
||||||
*
|
*
|
||||||
* @remark set_at_mode must be called to initialise modem
|
* @remark set_at_mode must be called to initialise modem
|
||||||
*
|
*
|
||||||
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
|
|
||||||
* @return zero on success
|
* @return zero on success
|
||||||
*/
|
*/
|
||||||
virtual nsapi_error_t on() = 0;
|
virtual nsapi_error_t on() = 0;
|
||||||
|
@ -62,7 +61,6 @@ public:
|
||||||
* Device power on/off is modem/board specific behavior and must be done on inherited class if needed.
|
* Device power on/off is modem/board specific behavior and must be done on inherited class if needed.
|
||||||
* Power off is done by toggling power pin/button.
|
* Power off is done by toggling power pin/button.
|
||||||
*
|
*
|
||||||
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
|
|
||||||
*
|
*
|
||||||
* @return zero on success
|
* @return zero on success
|
||||||
*/
|
*/
|
||||||
|
@ -88,15 +86,12 @@ public:
|
||||||
* 4 disable (turn off) both MT transmit and receive RF circuits
|
* 4 disable (turn off) both MT transmit and receive RF circuits
|
||||||
*
|
*
|
||||||
* @remark See 3GPP TS 27.007 CFUN for more details
|
* @remark See 3GPP TS 27.007 CFUN for more details
|
||||||
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
|
|
||||||
*
|
*
|
||||||
* @return zero on success
|
* @return zero on success
|
||||||
*/
|
*/
|
||||||
virtual nsapi_error_t set_power_level(int func_level) = 0;
|
virtual nsapi_error_t set_power_level(int func_level) = 0;
|
||||||
|
|
||||||
/** Reset and wake-up cellular device.
|
/** Reset and wake-up cellular device.
|
||||||
*
|
|
||||||
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
|
|
||||||
*
|
*
|
||||||
* @return zero on success
|
* @return zero on success
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -45,7 +45,7 @@ AT_CellularDevice::~AT_CellularDevice()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// each parser is associated with one filehandle (that is UART or a MUX channel)
|
// each parser is associated with one filehandle (that is UART)
|
||||||
ATHandler* AT_CellularDevice::get_at_handler(FileHandle *fileHandle)
|
ATHandler* AT_CellularDevice::get_at_handler(FileHandle *fileHandle)
|
||||||
{
|
{
|
||||||
if (!fileHandle) {
|
if (!fileHandle) {
|
||||||
|
|
Loading…
Reference in New Issue