mongoose/examples
Sergio R. Caprile a7db0d3cc5 move to Wizard
2024-10-03 11:55:38 -03:00
..
arduino allow auto driver init 2024-06-21 17:12:07 -03:00
device-dashboard Add mg_now() to sntp.c 2024-06-09 07:52:25 +01:00
esp32 move Mongoose options to mongoose_config 2024-04-19 10:47:16 -03:00
esp8266/http-client-server remove arch autodetection for embedded 2024-04-18 17:28:40 -03:00
file-transfer change mg_path_is_sane() 2024-04-22 11:27:22 -03:00
infineon Make mg_random() fallible. Abort TLS on weak RNG 2024-09-02 11:06:10 -03:00
microchip/same54-xpro Make mg_random() fallible. Abort TLS on weak RNG 2024-09-02 11:06:10 -03:00
micropython tie Micropython examples to a stable release 2024-03-11 11:07:18 -03:00
modbus-dashboard Add mg_now() to sntp.c 2024-06-09 07:52:25 +01:00
mqtt-dashboard Windows friendly 2024-08-17 08:20:41 +01:00
nxp move to Wizard 2024-10-02 13:42:14 -03:00
renesas/ek-ra6m4-make-baremetal-builtin Make mg_random() fallible. Abort TLS on weak RNG 2024-09-02 11:06:10 -03:00
rp2040 Add Pico-W example 2024-09-11 10:56:52 -03:00
stm32 move to Wizard 2024-09-26 17:11:57 -03:00
ti move to Wizard 2024-10-03 11:55:38 -03:00
uart-bridge remove http_match_uri() 2024-04-17 16:13:10 -03:00
wch/ch32v307-make-baremetal-builtin Make mg_random() fallible. Abort TLS on weak RNG 2024-09-02 11:06:10 -03:00
wifi-router-dashboard remove http_match_uri() 2024-04-17 16:13:10 -03:00
zephyr update to latest (again) 2024-06-18 20:56:31 -03:00
README.md Fix #2063 - a typo 2023-02-14 15:12:51 +00:00

Mongoose Network Library Examples

In order to build and run any of the existing examples, please follow: https://mongoose.ws/documentation/#how-to-build-and-run-examples

Contributing

Rules for creating a new example:

  • Makefile golden reference for desktop/server example: http-server
  • Makefile golden reference for the embedded example: stm32/nucleo-f746zg-baremetal
  • An example must build on Windows, Mac and Ubuntu Linux systems
  • Assume that user installed tools according to https://mongoose.ws/tutorials/tools/
  • Makefile must not include any other make files
  • Use CFLAGS for system-specific compilation options
  • Use CFLAGS_MONGOOSE for mongoose-specific compilation options
  • Use $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) to compile
  • If external repository is required, download it on demand using git shallow clone. See embedded example golden reference
  • Keep Makefile as short as possible, but verbose to understand it easily
  • Symlink files when required, like mongoose.c, ca.pem, etc. Make no copies
  • Example's README.md should contain only the title and the link to mongoose.ws tutorial page