mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
This commit adds Zephyr support for the XIAO BLE NRF52840 SENSE board from Seeed Studio. It also provides a good example of a richer Zephyr port than the default, adding: - Frozen modules (including asyncio, upysh, aioble and aiorepl). - Enough MicroPython features to support using aioble (at least for the `temp_sensor.py` example). - JSON, random, re, struct, etc. Signed-off-by: Ned Konz <ned@metamagix.tech>
8 lines
123 B
Python
8 lines
123 B
Python
include("$(MPY_DIR)/extmod/asyncio")
|
|
|
|
freeze("$(PORT_DIR)/modules")
|
|
|
|
require("upysh")
|
|
require("aioble")
|
|
require("aiorepl")
|