Skip to content

Commit 9e2da6a

Browse files
Teppo JärvelinAri Parkkila
authored andcommitted
Removed mux comments from code.
1 parent dc87629 commit 9e2da6a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

features/cellular/framework/API/CellularPower.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ class CellularPower
5353
*
5454
* @remark set_at_mode must be called to initialise modem
5555
*
56-
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
5756
* @return zero on success
5857
*/
5958
virtual nsapi_error_t on() = 0;
@@ -62,7 +61,6 @@ class CellularPower
6261
* Device power on/off is modem/board specific behavior and must be done on inherited class if needed.
6362
* Power off is done by toggling power pin/button.
6463
*
65-
* @remark Should not be called if MUX is enabled and started. If called then start-up sequence must be done again.
6664
*
6765
* @return zero on success
6866
*/
@@ -88,15 +86,12 @@ class CellularPower
8886
* 4 disable (turn off) both MT transmit and receive RF circuits
8987
*
9088
* @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.
9289
*
9390
* @return zero on success
9491
*/
9592
virtual nsapi_error_t set_power_level(int func_level) = 0;
9693

9794
/** 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.
10095
*
10196
* @return zero on success
10297
*/

features/cellular/framework/AT/AT_CellularDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ AT_CellularDevice::~AT_CellularDevice()
4545
}
4646
}
4747

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)
4949
ATHandler* AT_CellularDevice::get_at_handler(FileHandle *fileHandle)
5050
{
5151
if (!fileHandle) {

0 commit comments

Comments
 (0)