Skip to content

Commit 86cce3a

Browse files
author
Kimmo Lepikkö
authored
Merge pull request #55 from ARMmbed/lib_and_server_update
lib and server update
2 parents 7df47f1 + d90fff8 commit 86cce3a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,16 @@ Attach a serial console emulator of your choice (for example, PuTTY, Minicom or
9393
You should see an output similar to this:
9494

9595
```
96-
mbed-os-example-cellular, Connecting...
97-
98-
96+
mbed-os-example-cellular
97+
Establishing connection ......
98+
9999
Connection Established.
100-
UDP: Sent 4 Bytes to echo.u-blox.com
100+
TCP: connected with echo.mbedcloudtesting.com server
101+
TCP: Sent 4 Bytes to echo.mbedcloudtesting.com
101102
Received from echo server 4 Bytes
102-
103-
104-
Success. Exiting
105103
104+
105+
Success. Exiting
106106
```
107107

108108
## Troubleshooting

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
OnboardCellularInterface iface;
4747

4848
// Echo server hostname
49-
const char *host_name = "echo.u-blox.com";
49+
const char *host_name = "echo.mbedcloudtesting.com";
5050

5151
// Echo server port (same for TCP and UDP)
5252
const int port = 7;
5353

5454
Mutex PrintMutex;
55-
Thread dot_thread;
55+
Thread dot_thread(osPriorityNormal, 512);
5656

5757
#define PRINT_TEXT_LENGTH 128
5858
char print_text[PRINT_TEXT_LENGTH];

0 commit comments

Comments
 (0)