A simple example of ethernet webserver for mbed-os.

Getting started with Ethernet webserver

This is the Ethernet webserver example for mbed OS.

Committer:
c_jin
Date:
Tue Feb 19 11:48:03 2019 +0000
Revision:
0:621fd985b960
A simple example of Ethernet webserver demo for mbed-os.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
c_jin 0:621fd985b960 1 # Getting started example for GD32 Ethernet web server demo
c_jin 0:621fd985b960 2
c_jin 0:621fd985b960 3 ###
c_jin 0:621fd985b960 4
c_jin 0:621fd985b960 5 This demo realize webserver application:
c_jin 0:621fd985b960 6 Users can visit the board through Internet Explorer, the board acts as a webserver, and the url is the local
c_jin 0:621fd985b960 7 ip address of the board("192.168.57.156").
c_jin 0:621fd985b960 8 If DHCP function is needed, it can be configured by change DEMO_DHCP_ENABLE to 1 in main.cpp. This
c_jin 0:621fd985b960 9 function is closed by default. Users can use a router to connect the board, and use the HyperTerminal
c_jin 0:621fd985b960 10 to print the automatic allocated ip address. Users can visit the board through Internet Explorer.
c_jin 0:621fd985b960 11
c_jin 0:621fd985b960 12 ```
c_jin 0:621fd985b960 13
c_jin 0:621fd985b960 14 ## Related Links
c_jin 0:621fd985b960 15
c_jin 0:621fd985b960 16 * [Mbed OS Stats API](https://os.mbed.com/docs/latest/apis/mbed-statistics.html)
c_jin 0:621fd985b960 17 * [Mbed OS Configuration](https://os.mbed.com/docs/latest/reference/configuration.html)
c_jin 0:621fd985b960 18 * [Mbed OS Serial Communication](https://os.mbed.com/docs/latest/tutorials/serial-communication.html)
c_jin 0:621fd985b960 19
c_jin 0:621fd985b960 20 ### License and contributions
c_jin 0:621fd985b960 21
c_jin 0:621fd985b960 22 The software is provided under Apache-2.0 license. Contributions to this project are accepted under the same license. Please see contributing.md for more info.
c_jin 0:621fd985b960 23
c_jin 0:621fd985b960 24 This project contains code from other projects. The original license text is included in those source files. They must comply with our license guide.