File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
features/cellular/framework Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ class CellularPower
53
53
*
54
54
* @remark set_at_mode must be called to initialise modem
55
55
*
56
- * @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
57
56
* @return zero on success
58
57
*/
59
58
virtual nsapi_error_t on () = 0;
@@ -62,7 +61,6 @@ class CellularPower
62
61
* Device power on/off is modem/board specific behavior and must be done on inherited class if needed.
63
62
* Power off is done by toggling power pin/button.
64
63
*
65
- * @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
66
64
*
67
65
* @return zero on success
68
66
*/
@@ -88,15 +86,12 @@ class CellularPower
88
86
* 4 disable (turn off) both MT transmit and receive RF circuits
89
87
*
90
88
* @remark See 3GPP TS 27.007 CFUN for more details
91
- * @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
92
89
*
93
90
* @return zero on success
94
91
*/
95
92
virtual nsapi_error_t set_power_level (int func_level) = 0;
96
93
97
94
/* * Reset and wake-up cellular device.
98
- *
99
- * @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
100
95
*
101
96
* @return zero on success
102
97
*/
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ AT_CellularDevice::~AT_CellularDevice()
45
45
}
46
46
}
47
47
48
- // each parser is associated with one filehandle (that is UART or a MUX channel )
48
+ // each parser is associated with one filehandle (that is UART)
49
49
ATHandler* AT_CellularDevice::get_at_handler (FileHandle *fileHandle)
50
50
{
51
51
if (!fileHandle) {
You can’t perform that action at this time.
0 commit comments