@@ -43,31 +43,31 @@ class OnboardCellularInterface : public UARTCellularInterface {
43
43
protected:
44
44
/* * Sets the modem up for powering on
45
45
*
46
- * modem_init() is equivalent to plugging in the device, e.g. , attaching power and serial port.
47
- * Uses onboard_modem_api.h where the implementation of onboard_modem_api is provided by the target .
46
+ * modem_init() is equivalent to plugging in the device, for example , attaching power and serial port.
47
+ * Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api .
48
48
*/
49
49
virtual void modem_init ();
50
50
51
51
/* * Sets the modem in unplugged state
52
52
*
53
- * modem_deinit() will be equivalent to pulling the plug off of the device, i.e. , detaching power
53
+ * modem_deinit() will be equivalent to pulling the plug off of the device, in other words , detaching power
54
54
* and serial port. This puts the modem in lowest power state.
55
- * Uses onboard_modem_api.h where the implementation of onboard_modem_api is provided by the target .
55
+ * Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api .
56
56
*/
57
57
virtual void modem_deinit ();
58
58
59
59
/* * Powers up the modem
60
60
*
61
61
* modem_power_up() is equivalent to pressing the soft power button.
62
62
* The driver may repeat this if the modem is not responsive to AT commands.
63
- * Uses onboard_modem_api.h where the implementation of onboard_modem_api is provided by the target .
63
+ * Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api .
64
64
*/
65
65
virtual void modem_power_up ();
66
66
67
67
/* * Powers down the modem
68
68
*
69
69
* modem_power_down() is equivalent to turning off the modem by button press.
70
- * Uses onboard_modem_api.h where the implementation of onboard_modem_api is provided by the target .
70
+ * Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api .
71
71
*/
72
72
virtual void modem_power_down ();
73
73
};
0 commit comments