Files
micropython/ports/zephyr/boards/xiao_ble_nrf52840_sense/manifest.py
Ned Konz 7bb78fb6df zephyr/boards: Add XIAO BLE NRF52840 SENSE board.
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>
2025-10-22 15:00:35 +11:00

8 lines
123 B
Python

include("$(MPY_DIR)/extmod/asyncio")
freeze("$(PORT_DIR)/modules")
require("upysh")
require("aioble")
require("aiorepl")