circuitpython/ports/zephyr
Maureen Helm afa7265ffa zephyr: Upgrade to Zephyr v4.2.0.
Updates the Zephyr port build instructions and CI to use the latest
Zephyr release tag.

Tested on max32690fthr and frdm_k64f.

Signed-off-by: Maureen Helm <maureen.helm@analog.com>
2025-08-16 15:10:30 +10:00
..
boards zephyr/machine_i2c_target: Implement I2CTarget class. 2025-08-01 23:03:17 +10:00
src zephyr/src: Fix USB device_next driver to work with zephyr 4.0.0. 2025-07-08 10:10:16 +10:00
CMakeLists.txt zephyr/mpconfigport: Enable machine.SoftI2C and machine.SoftSPI. 2025-07-08 11:15:11 +10:00
help.c ports: Standardise docs link in help text. 2023-06-02 11:48:46 +10:00
Kconfig zephyr: Create ability to use device_next with CDC ACM as REPL. 2025-05-02 12:27:14 +10:00
machine_i2c.c zephyr: Refactor device lookup into a common helper function. 2024-10-01 20:02:01 -05:00
machine_i2c_target.c zephyr/machine_i2c_target: Implement I2CTarget class. 2025-08-01 23:03:17 +10:00
machine_pin.c zephyr/machine_pin: Retry configuring gpio with just GPIO_OUTPUT. 2025-07-08 11:15:11 +10:00
machine_pwm.c zephyr/machine_pwm: Implement PWM support. 2025-04-30 00:28:45 +10:00
machine_spi.c zephyr: Refactor device lookup into a common helper function. 2024-10-01 20:02:01 -05:00
machine_timer.c zephyr/machine_timer: Make machine.Timer id argument optional. 2025-07-08 11:15:11 +10:00
machine_uart.c zephyr/machine_uart: Complete UART driver and make it interrupt driven. 2025-07-08 07:50:06 +10:00
machine_wdt.c zephyr/machine_wdt: Add watchdog timer implementation. 2025-03-05 13:22:22 +11:00
main.c zephyr/machine_i2c_target: Implement I2CTarget class. 2025-08-01 23:03:17 +10:00
modbluetooth_zephyr.c extmod/modbluetooth: Add timeout to deinit. 2025-06-04 02:21:32 +10:00
modmachine.c zephyr/machine_timer: Add machine.Timer class implementation. 2025-03-07 21:32:22 +11:00
modmachine.h extmod/modmachine: Provide common bindings for 6 bare-metal functions. 2023-11-30 16:11:11 +11:00
modsocket.c zephyr: Update generated header path. 2025-07-08 09:53:24 +10:00
modtime.c zephyr: Replace zephyr.h with kernel.h. 2024-10-02 00:07:46 +10:00
modzephyr.c zephyr: Fix call to thread_analyzer_print for v4.0. 2025-04-29 23:00:37 +10:00
modzephyr.h zephyr: Implement block device protocol via zephyr flash map api. 2020-02-07 11:24:06 +11:00
modzsensor.c zephyr: Refactor device lookup into a common helper function. 2024-10-01 20:02:01 -05:00
mpconfigport.h zephyr/machine_i2c_target: Implement I2CTarget class. 2025-08-01 23:03:17 +10:00
mpconfigport_minimal.h zephyr/mpconfigport_minimal: Use MICROPY_CONFIG_ROM_LEVEL_MINIMUM. 2025-07-31 10:48:56 +10:00
mphalport.c zephyr/mphalport: Implement C-level pin HAL. 2025-07-08 11:15:11 +10:00
mphalport.h zephyr/mphalport: Implement C-level pin HAL. 2025-07-08 11:15:11 +10:00
mpthreadport.c zephyr: Re-implement the Zephyr console in non-blocking mode. 2024-09-06 20:42:56 +10:00
mpthreadport.h zephyr: Replace zephyr.h with kernel.h. 2024-10-02 00:07:46 +10:00
prj.conf zephyr: Update generated header path. 2025-07-08 09:53:24 +10:00
prj_minimal.conf zephyr: Update generated header path. 2025-07-08 09:53:24 +10:00
qstrdefsport.h zephyr/main: Add /flash/lib or /sd/lib to sys.path on start up. 2025-07-08 10:10:16 +10:00
README.md zephyr: Upgrade to Zephyr v4.2.0. 2025-08-16 15:10:30 +10:00
thread.conf zephyr: Add threading support. 2024-09-06 20:42:56 +10:00
uart_core.c zephyr: Enable sys.stdin/out/err. 2025-07-08 10:10:16 +10:00
zephyr_device.c zephyr: Allow using devicetree node labels to construct machine objects. 2024-10-01 20:02:01 -05:00
zephyr_device.h zephyr: Refactor device lookup into a common helper function. 2024-10-01 20:02:01 -05:00
zephyr_storage.c zephyr: Introduce auto-listing of FlashArea Partitions. 2025-05-02 12:37:20 +10:00

MicroPython port to Zephyr RTOS

This is a work-in-progress port of MicroPython to Zephyr RTOS (http://zephyrproject.org).

This port tries to support all Zephyr versions supported upstream, i.e. currently v3.7 (LTS), v4.2 and the development branch. The CI is setup to use the latest version, i.e. v4.2.

All boards supported by Zephyr (with standard level of features support, like UART console) should work with MicroPython (but not all were tested).

Features supported at this time:

  • REPL (interactive prompt) over Zephyr UART console.
  • time module for time measurements and delays.
  • machine.Pin class for GPIO control, with IRQ support.
  • machine.I2C class for I2C control.
  • machine.SPI class for SPI control.
  • machine.PWM class for PWM control
  • socket module for networking (IPv4/IPv6).
  • "Frozen modules" support to allow to bundle Python modules together with firmware. Including complete applications, including with run-on-boot capability.
  • virtual filesystem with FAT and littlefs formats, backed by either DiskAccess or FlashArea (flash map).

Over time, bindings for various Zephyr subsystems may be added.

Building

Follow to Zephyr web site for Getting Started instruction of installing Zephyr SDK, getting Zephyr source code, and setting up development environment. (Direct link: https://docs.zephyrproject.org/latest/getting_started/index.html). You may want to build Zephyr's own sample applications to make sure your setup is correct.

If you already have Zephyr installed but are having issues building the MicroPython port then try installing the correct version of Zephyr via:

$ west init zephyrproject -m https://github.com/zephyrproject-rtos/zephyr --mr v4.2.0

Alternatively, you don't have to redo the Zephyr installation to just switch from master to a tagged release, you can instead do:

$ cd zephyrproject/zephyr
$ git checkout v4.2.0
$ west update

With Zephyr installed you may then need to configure your environment, for example by sourcing zephyrproject/zephyr/zephyr-env.sh.

Once Zephyr is ready to use you can build the MicroPython port just like any other Zephyr application. You can do this anywhere in your file system, it does not have to be in the ports/zephyr directory. Assuming you have cloned the MicroPython repository into your home directory, you can build the Zephyr port for a frdm_k64f board like this:

$ west build -b frdm_k64f ~/micropython/ports/zephyr

To build for QEMU instead:

$ west build -b qemu_x86 ~/micropython/ports/zephyr

To build any board with the _thread module enabled, add -DOVERLAY_CONFIG=thread.conf, for instance:

$ west build -b frdm_k64f ~/micropython/ports/zephyr -DOVERLAY_CONFIG=thread.conf

Consult the Zephyr documentation above for the list of supported boards. Board configuration files appearing in ports/zephyr/boards/ correspond to boards that have been tested with MicroPython and may have additional options enabled, like filesystem support.

Running

To flash the resulting firmware to your board:

$ west flash

Or, to flash it to your board and start a gdb debug session:

$ west debug

To run the resulting firmware in QEMU (for BOARDs like qemu_x86, qemu_cortex_m3):

$ west build -t run

Networking is enabled with the default configuration, so you need to follow instructions in https://docs.zephyrproject.org/latest/connectivity/networking/qemu_setup.html#networking-with-qemu to setup the host side of TAP/SLIP networking. If you get an error like:

could not connect serial device to character backend 'unix:/tmp/slip.sock'

it's a sign that you didn't follow the instructions above. If you would like to just run it quickly without extra setup, see "minimal" build below.

Quick example

To blink an LED:

import time
from machine import Pin

LED = Pin(("gpiob", 21), Pin.OUT)
while True:
    LED.value(1)
    time.sleep(0.5)
    LED.value(0)
    time.sleep(0.5)

The above code uses an LED location for a FRDM-K64F board (port B, pin 21; following Zephyr conventions port are identified by their devicetree node label. You will need to adjust it for another board (using board's reference materials). To execute the above sample, copy it to clipboard, in MicroPython REPL enter "paste mode" using Ctrl+E, paste clipboard, press Ctrl+D to finish paste mode and start execution.

To respond to Pin change IRQs, on a FRDM-K64F board run:

from machine import Pin

SW2 = Pin(("gpioc", 6), Pin.IN)
SW3 = Pin(("gpioa", 4), Pin.IN)

SW2.irq(lambda t: print("SW2 changed"))
SW3.irq(lambda t: print("SW3 changed"))

while True:
    pass

Example of using I2C to scan for I2C slaves:

from machine import I2C

i2c = I2C("i2c0")
i2c.scan()

Example of using SPI to write a buffer to the MOSI pin:

from machine import SPI

spi = SPI("spi0")
spi.init(baudrate=500000, polarity=1, phase=1, bits=8, firstbit=SPI.MSB)
spi.write(b'abcd')

Minimal build

MicroPython is committed to maintain minimal binary size for Zephyr port below 128KB, as long as Zephyr project is committed to maintain stable minimal size of their kernel (which they appear to be). Note that at such size, there is no support for any Zephyr features beyond REPL over UART, and only very minimal set of builtin Python modules is available. Thus, this build is more suitable for code size control and quick demonstrations on smaller systems. It's also suitable for careful enabling of features one by one to achieve needed functionality and code size. This is in the contrast to the "default" build, which may get more and more features enabled over time.

To make a minimal build:

$ west build -b qemu_x86 ~/micropython/ports/zephyr -- -DCONF_FILE=prj_minimal.conf

To run a minimal build in QEMU without requiring TAP networking setup run the following after you built an image with the previous command:

$ west build -t run