@@ -25,7 +25,7 @@ typedef mbed::EasyCellularConnection OnboardCellularInterface;
25
25
26
26
/* * OnboardCellularInterface class
27
27
*
28
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
28
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
29
29
*
30
30
* This interface serves as the controller/driver for an
31
31
* onboard modem implementing onboard_modem_api.h.
@@ -40,21 +40,21 @@ class OnboardCellularInterface : public UARTCellularInterface {
40
40
public:
41
41
42
42
/* * Constructor
43
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
43
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
44
44
*/
45
45
MBED_DEPRECATED_SINCE (" mbed-os-5.9" , " This API will be deprecated, use mbed-os/features/cellular/framework/API/CellularPower.h instead." )
46
46
OnboardCellularInterface (bool debug = false );
47
47
48
48
/* * Destructor
49
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
49
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
50
50
*/
51
51
MBED_DEPRECATED_SINCE (" mbed-os-5.9" , " This API will be deprecated, use mbed-os/features/cellular/framework/API/CellularPower.h instead." )
52
52
virtual ~OnboardCellularInterface ();
53
53
54
54
protected:
55
55
/* * Sets the modem up for powering on
56
56
*
57
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
57
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
58
58
*
59
59
* modem_init() is equivalent to plugging in the device, for example, attaching power and serial port.
60
60
* Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api.
@@ -64,7 +64,7 @@ class OnboardCellularInterface : public UARTCellularInterface {
64
64
65
65
/* * Sets the modem in unplugged state
66
66
*
67
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
67
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
68
68
*
69
69
* modem_deinit() will be equivalent to pulling the plug off of the device, in other words, detaching power
70
70
* and serial port. This puts the modem in lowest power state.
@@ -75,7 +75,7 @@ class OnboardCellularInterface : public UARTCellularInterface {
75
75
76
76
/* * Powers up the modem
77
77
*
78
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
78
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
79
79
*
80
80
* modem_power_up() is equivalent to pressing the soft power button.
81
81
* The driver may repeat this if the modem is not responsive to AT commands.
@@ -86,7 +86,7 @@ class OnboardCellularInterface : public UARTCellularInterface {
86
86
87
87
/* * Powers down the modem
88
88
*
89
- * @deprecated This API will be deprecated mbed-os-5.9, use mbed-os/features/cellular/framework/API/CellularPower.h instead.
89
+ * @deprecated This API will be deprecated in mbed-os-5.9. Use mbed-os/features/cellular/framework/API/CellularPower.h instead.
90
90
*
91
91
* modem_power_down() is equivalent to turning off the modem by button press.
92
92
* Uses onboard_modem_api.h where the target provides the implementation of onboard_modem_api.
0 commit comments