circuitpython/zephyr
Paul Sokolovsky d86cac4b82 extmod/utime_mphal: Implement ticks_add(), add to all maintained ports. 2016-10-29 17:30:05 +03:00
..
src zephyr/zephyr_getchar: Update for recent Zephyr refactor of console hooks. 2016-10-28 17:53:10 +03:00
Kbuild zephyr: Initial Zephyr RTOS port, Zephyr part. 2016-10-10 01:35:24 +03:00
Makefile zephyr: Initial implementation of machine.Pin. 2016-10-27 00:47:26 +03:00
Makefile.zephyr zephyr: Switch to microkernel, required for network to work in background. 2016-10-10 01:41:38 +03:00
README.md zephyr/README: Update for the current featureset, add more info. 2016-10-28 21:51:18 +03:00
help.c zephyr: Implement the help() function. 2016-10-12 19:31:39 +03:00
machine_pin.c zephyr: Initial implementation of machine.Pin. 2016-10-27 00:47:26 +03:00
main.c zephyr: Add copyright blurbs. 2016-10-12 22:51:17 +03:00
modmachine.c zephyr: Initial implementation of machine.Pin. 2016-10-27 00:47:26 +03:00
modmachine.h zephyr: Initial implementation of machine.Pin. 2016-10-27 00:47:26 +03:00
modutime.c extmod/utime_mphal: Implement ticks_add(), add to all maintained ports. 2016-10-29 17:30:05 +03:00
mpconfigport.h zephyr: Support time -> utime module "weaklink". 2016-10-28 21:38:52 +03:00
mphalport.h zephyr: Fix mp_hal_set_interrupt_char() declaration to be compatible. 2016-10-26 17:53:28 +03:00
prj.conf zephyr/zephyr_getchar: Update for recent Zephyr refactor of console hooks. 2016-10-28 17:53:10 +03:00
prj.mdef zephyr: Switch to microkernel, required for network to work in background. 2016-10-10 01:41:38 +03:00
uart_core.c zephyr: Add copyright blurbs. 2016-10-12 22:51:17 +03:00
z_config.mk zephyr/Makefile: Automatically derive target-specific CFLAGS. 2016-10-10 02:06:06 +03:00

README.md

MicroPython port to Zephyr RTOS

This is an initial port of MicroPython to Zephyr RTOS (http://zephyrproject.org).

The port integrates well with Zephyr build system, using the latest features which will be available in 1.6.0, and thus requires Zephyr master to build against. All boards supported by Zephyr (with standard level of feature 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.
  • utime module for time measurements and delays.
  • machine.Pin class for GPIO control.
  • "Frozen modules" support to allow to bundle Python modules together with firmware. Including complete applications, including with run-on-boot capability.

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://www.zephyrproject.org/doc/getting_started/getting_started.html). You may want to build Zephyr's own sample applications to make sure your setup is correct.

To build MicroPython port, in the port subdirectory (zephyr/), run:

make BOARD=<board>

If you don't specify BOARD, the default is qemu_x86 (x86 target running in QEMU emulator). Consult Zephyr documentation above for the list of supported boards.

Running

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

make qemu

For deploying/flashing a firmware on a real board, follow Zephyr documentation for a given board.

Quick example

To blink an LED:

import time
from machine import Pin

LED = Pin(("GPIO_1", 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 "GPIO_x", where x starts from 0). 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.