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
Revision 5:ac9aebd61a31, committed 2018-08-10
- Comitter:
- Bongjun
- Date:
- Fri Aug 10 08:52:29 2018 +0000
- Parent:
- 4:e6e2fe67e79a
- Commit message:
- remove some comments
Changed in this revision
diff -r e6e2fe67e79a -r ac9aebd61a31 W5500Interface.lib --- a/W5500Interface.lib Thu Aug 09 08:43:24 2018 +0000 +++ b/W5500Interface.lib Fri Aug 10 08:52:29 2018 +0000 @@ -1,1 +1,1 @@ -http://os.mbed.com/users/Bongjun/code/W5500Interface/#1877881f3516 +http://os.mbed.com/users/Bongjun/code/W5500Interface/#351e20cf7d05
diff -r e6e2fe67e79a -r ac9aebd61a31 easy-connect.lib --- a/easy-connect.lib Thu Aug 09 08:43:24 2018 +0000 +++ b/easy-connect.lib Fri Aug 10 08:52:29 2018 +0000 @@ -1,1 +1,1 @@ -http://os.mbed.com/users/Bongjun/code/easy-connect/#1c6ff32e7b69 +http://os.mbed.com/users/Bongjun/code/easy-connect/#d81e6bc35f60
diff -r e6e2fe67e79a -r ac9aebd61a31 source/main.cpp
--- a/source/main.cpp Thu Aug 09 08:43:24 2018 +0000
+++ b/source/main.cpp Fri Aug 10 08:52:29 2018 +0000
@@ -5,6 +5,7 @@
//Serial pc(USBTX, USBRX);
//DigitalOut led(D1);
+//confict with W5500 SPI CS pin, so D1 pin can't use for this example.
// Requests come in here
void request_handler(ParsedHttpRequest* request, TCPSocket* socket) {
@@ -41,28 +42,6 @@
int main() {
// pc.baud(115200);
- printf("Easy connect...\n");
- NetworkInterface *network = easy_connect(true);
- if (!network) {
- printf("Cannot connect to the network, see serial output");
- return 1;
- }
-
- printf("Connected to the network. Opening a socket...\n");
-
- HttpServer server(network);
- nsapi_error_t res = server.start(8080, &request_handler);
-
- if (res == NSAPI_ERROR_OK) {
- printf("Server is listening at http://%s:8080\n", network->get_ip_address());
- }
- else {
- printf("Server could not be started... %d\n", res);
- }
-
- wait(osWaitForever);
-
-/*
// Connect to the network (see mbed_app.json for the connectivity method used)
NetworkInterface* network = easy_connect(true);
if (!network) {
@@ -81,5 +60,5 @@
}
wait(osWaitForever);
-*/
+
}
