data/method/mongoose/mongoose-master/examples/uart-bridge
luozhikun 09a1681920 feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
..
screenshots feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
web_root feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
Makefile feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
README.md feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
main.c feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
net.c feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00
packed_fs.c feat: 增加method和tool资料 2024-01-29 10:44:43 +08:00

README.md

A UART to network bridge

This example is a demonstration of how Mongoose Library could be integrated into an embedded device and provide a UART-to-Network bridge capability:

  • A device opens listening TCP port and Websocket port and waits for connections
  • When a client connects, data is exchanged with the device's UART
  • Everything that client send, is sent to the UART
  • Everything that is read from the UART, gets sent to the client
  • Multiple clients are allowed
  • Live UART console allows to talk to the UART from the web page
  • Web UI is hardcoded into the binary and does not need a filesystem

Screenshots