24
24
class CellularBase : public NetworkInterface {
25
25
26
26
public:
27
- /* * Get the default Cellular interface.
27
+ /* * Get the default cellular interface.
28
28
*
29
29
* This is provided as a weak method so applications can override.
30
30
* Default behaviour is to get the target's default interface, if
@@ -34,7 +34,7 @@ class CellularBase: public NetworkInterface {
34
34
*/
35
35
static CellularBase *get_default_instance ();
36
36
37
- /* * Set the Cellular network credentials.
37
+ /* * Set the cellular network credentials.
38
38
*
39
39
* Please check documentation of connect() for default behaviour of APN settings.
40
40
*
@@ -51,7 +51,7 @@ class CellularBase: public NetworkInterface {
51
51
*/
52
52
virtual void set_sim_pin (const char *sim_pin) = 0;
53
53
54
- /* * Attempt to connect to a Cellular network with a pin and credentials.
54
+ /* * Attempt to connect to a cellular network with a pin and credentials.
55
55
*
56
56
* @param sim_pin PIN for the SIM card.
57
57
* @param apn Access point name (optional).
@@ -63,7 +63,7 @@ class CellularBase: public NetworkInterface {
63
63
const char *uname = 0 ,
64
64
const char *pwd = 0 ) = 0;
65
65
66
- /* * Attempt to connect to a Cellular network.
66
+ /* * Attempt to connect to a cellular network.
67
67
*
68
68
* If the SIM requires a PIN, and it is invalid or is not set, NSAPI_ERROR_AUTH_ERROR is returned.
69
69
*
@@ -115,7 +115,7 @@ class CellularBase: public NetworkInterface {
115
115
#if !defined(DOXYGEN_ONLY)
116
116
117
117
protected:
118
- /* * Get the target's default Cellular interface.
118
+ /* * Get the target's default cellular interface.
119
119
*
120
120
* This is provided as a weak method so targets can override. The
121
121
* default implementation configures and returns the OnBoardModemInterface
0 commit comments