Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: W5500Interface easy-connect mbed-http
Fork of http-webserver-example by
README.md@1:fe3df398bdf5, 2017-07-31 (annotated)
- Committer:
- Jan Jongboom
- Date:
- Mon Jul 31 17:12:21 2017 +0200
- Revision:
- 1:fe3df398bdf5
- Parent:
- 0:41f820ea137a
- Child:
- 3:954c7d381623
Compatibility with LwIP. Fix memory leaks.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Jan Jongboom |
0:41f820ea137a | 1 | # mbed-os-example-http-server |
| Jan Jongboom |
0:41f820ea137a | 2 | |
| Jan Jongboom |
0:41f820ea137a | 3 | This application demonstrates how to run an HTTP server on an mbed OS 5 device. |
| Jan Jongboom |
0:41f820ea137a | 4 | |
| Jan Jongboom |
0:41f820ea137a | 5 | Request parsing is done through [nodejs/http-parser](https://github.com/nodejs/http-parser). |
| Jan Jongboom |
0:41f820ea137a | 6 | |
| Jan Jongboom |
0:41f820ea137a | 7 | ## To build |
| Jan Jongboom |
0:41f820ea137a | 8 | |
| Jan Jongboom |
0:41f820ea137a | 9 | 1. Open ``mbed_app.json`` and change the `network-interface` option to your connectivity method ([more info](https://github.com/ARMmbed/easy-connect)). |
| Jan Jongboom |
0:41f820ea137a | 10 | 2. Build the project in the online compiler or using mbed CLI. |
| Jan Jongboom |
0:41f820ea137a | 11 | 3. Flash the project to your development board. |
| Jan Jongboom |
0:41f820ea137a | 12 | 4. Attach a serial monitor to your board to see the debug messages. |
| Jan Jongboom |
0:41f820ea137a | 13 | |
| Jan Jongboom |
0:41f820ea137a | 14 | ## Tested on |
| Jan Jongboom |
0:41f820ea137a | 15 | |
| Jan Jongboom |
0:41f820ea137a | 16 | * K64F with Ethernet. |
| Jan Jongboom |
0:41f820ea137a | 17 | * NUCLEO_F411RE with ESP8266. |
| Jan Jongboom |
0:41f820ea137a | 18 | * For ESP8266, you need [this patch](https://github.com/ARMmbed/esp8266-driver/pull/41). |
| Jan Jongboom |
0:41f820ea137a | 19 | |
| Jan Jongboom |
0:41f820ea137a | 20 | But every networking stack that supports the [mbed OS 5 NetworkInterface API](https://docs.mbed.com/docs/mbed-os-api-reference/en/latest/APIs/communication/network_sockets/) should work. |
