You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/api/connectivity/networksocket/networksocket.md
+10-11Lines changed: 10 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -91,15 +91,15 @@ Here is an example of an HTTP client program. The program brings up Ethernet as
91
91
92
92
#### Cellular
93
93
94
-
The [CellularBase](/docs/v5.7/mbed-os-api-doxy/class_cellular_base.html) provides a C++ API for connecting to the internet over a Cellular device.
94
+
The [CellularBase](https://os-doc-builder.test.mbed.com/docs/development/mbed-os-api-doxy/_cellular_base_8h_source.html) provides a C++ API for connecting to the internet over a Cellular device.
95
95
96
-
Arm Mbed OS provides a [reference implementation of CellularBase](https://github.com/ARMmbed/mbed-os/tree/master/features/cellular/easy_cellular).
96
+
Arm Mbed OS provides a [reference implementation of CellularBase](https://os-doc-builder.test.mbed.com/docs/development/mbed-os-api-doxy/_easy_cellular_connection_8h_source.html).
97
97
98
98
##### Getting started
99
99
100
100
1. Choose an [Mbed board that supports cellular](https://os.mbed.com/platforms/?mbed-enabled=15&connectivity=1), such as the [UBLOX-C027](https://os.mbed.com/platforms/u-blox-C027/) or [MTS-DRAGONFLY](https://os.mbed.com/platforms/MTS-Dragonfly/).
101
101
102
-
1. Clone [`mbed-os-example-cellular`](https://github.com/ARMmbed/mbed-os-example-cellular). Follow the instructions in the repository.
102
+
1. Clone [`mbed-os-example-cellular`](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-cellular/). Follow the instructions in the repository.
103
103
104
104
1. Compile the code.
105
105
1. Flash the board.
@@ -108,15 +108,14 @@ Arm Mbed OS provides a [reference implementation of CellularBase](https://github
108
108
109
109
```
110
110
mbed-os-example-cellular
111
-
PIN code set
112
-
Establishing connection
113
-
114
-
111
+
Establishing connection ......
112
+
115
113
Connection Established.
116
-
UDP: Sent 4 Bytes to echo.mbedcloudtesting.com
114
+
TCP: connected with echo.mbedcloudtesting.com server
115
+
TCP: Sent 4 Bytes to echo.mbedcloudtesting.com
117
116
Received from echo server 4 Bytes
118
-
119
-
117
+
118
+
120
119
Success. Exiting
121
120
```
122
121
@@ -132,7 +131,7 @@ You can use and extend a cellular interface in various different ways. For examp
[`mbed-os-example-cellular`](https://github.com/ARMmbed/mbed-os-example-cellular) uses [an easy cellular connection](https://github.com/ARMmbed/mbed-os/tree/master/features/cellular/easy_cellular). It depends on the modem whether the application uses PPP or AT mode. We can summarize this particular design as follows:
134
+
[`mbed-os-example-cellular`](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-cellular/) uses [an easy cellular connection](https://os-doc-builder.test.mbed.com/docs/development/mbed-os-api-doxy/_easy_cellular_connection_8h_source.html). It depends on the modem whether the application uses PPP or AT mode. We can summarize this particular design as follows:
136
135
137
136
- It uses an external IP stack, such as LWIP, or on-chip network stacks such as when the modem does not support PPP.
138
137
- The easy cellular connection uses standard 3GPP AT 27.007 AT commands to set up the cellular modem and to register to the network.
0 commit comments