File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
netsocket/cellular/generic_modem_driver Expand file tree Collapse file tree 2 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 23
23
#include < string.h>
24
24
#include " nsapi_ppp.h"
25
25
#if MBED_CONF_PPP_CELL_IFACE_APN_LOOKUP
26
- #include " utils/ APN_db.h"
26
+ #include " APN_db.h"
27
27
#endif // MBED_CONF_PPP_CELL_IFACE_APN_LOOKUP
28
28
#if defined(FEATURE_COMMON_PAL)
29
29
#include " mbed_trace.h"
@@ -574,12 +574,12 @@ nsapi_error_t PPPCellularInterface::connect()
574
574
user_specified_apn = true ;
575
575
#endif
576
576
}
577
-
577
+
578
578
if (is_connected ()) {
579
579
return NSAPI_ERROR_IS_CONNECTED;
580
580
} else if (_connect_status == NSAPI_STATUS_CONNECTING) {
581
581
return NSAPI_ERROR_ALREADY;
582
- }
582
+ }
583
583
584
584
_connect_status = NSAPI_STATUS_CONNECTING;
585
585
if (_connection_status_cb) {
@@ -681,7 +681,7 @@ nsapi_error_t PPPCellularInterface::connect()
681
681
}
682
682
683
683
tr_info (" The APN being used is %s.\n " , _apn);
684
-
684
+
685
685
/* Attempt to enter data mode */
686
686
success = set_atd (_at); // enter into Data mode with the modem
687
687
if (!success) {
You can’t perform that action at this time.
0 commit comments