Skip to content

Commit 57635dc

Browse files
committed
Remove CellularInterface
This has been superceded by CellularBase. Name change occurred late in review of #4119 and original unused CellularInterface was left behind.
1 parent 40d9519 commit 57635dc

File tree

3 files changed

+4
-75
lines changed

3 files changed

+4
-75
lines changed

features/netsocket/CellularInterface.h

Lines changed: 0 additions & 71 deletions
This file was deleted.

features/netsocket/cellular/generic_modem_driver/PPPCellularInterface.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class PPPCellularInterface : public CellularBase {
133133
/** Start the interface
134134
*
135135
* Attempts to connect to a Cellular network.
136-
* This driver is written mainly for data network connections as CellularInterface
136+
* This driver is written mainly for data network connections as CellularBase
137137
* is NetworkInterface. That's why connect() call internally calls nwk_registration()
138138
* method with parameter PACKET_SWITCHED network. Circuit switched hook and registration
139139
* process is implemented and left in the driver for future extension/subclass support,e.g.,
@@ -329,8 +329,8 @@ class PPPCellularInterface : public CellularBase {
329329
/** Starts network registration process.
330330
*
331331
* Potential users could be subclasses who are not network interface
332-
* but would like to use CellularInterface infrastructure to register
333-
* with a cellular network, e.g., an SMS extension to CellularInterface.
332+
* but would like to use CellularBase infrastructure to register
333+
* with a cellular network, e.g., an SMS extension to CellularBase.
334334
*
335335
* @param nwk_type type of network to connect, defaults to packet switched network
336336
*

features/netsocket/nsapi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include "netsocket/NetworkInterface.h"
3434
#include "netsocket/EthInterface.h"
3535
#include "netsocket/WiFiInterface.h"
36-
#include "netsocket/CellularInterface.h"
36+
#include "netsocket/CellularBase.h"
3737
#include "netsocket/MeshInterface.h"
3838

3939
#include "netsocket/Socket.h"

0 commit comments

Comments
 (0)