mirror of
https://github.com/cesanta/mongoose.git
synced 2025-06-08 18:13:40 +08:00
12 lines
806 B
Markdown
12 lines
806 B
Markdown
# Mongoose as a MicroPython user module
|
|
|
|
The most basic usage is in `main.py`.
|
|
|
|
You'll have to configure Mongoose for your desired platform, this example runs on the `unix` port and Mongoose detects it as a known architecture and hence configures itself to use sockets and time base. For other platforms, you'll have to do your homework (there's plenty of Mongoose examples for several platforms); also check respective MicroPython build instructions.
|
|
|
|
For more information, check this third-party article: [part 1](https://www.embeddedrelated.com/showarticle/1649.php), [part 2](https://www.embeddedrelated.com/showarticle/1670.php)
|
|
|
|
Check [_thread](https://docs.micropython.org/en/latest/library/_thread.html) support for more advanced usage
|
|
|
|
https://docs.micropython.org/en/latest/develop/cmodules.html
|