circuitpython/ports/nrf
Dan Halbert 5f101f3535 Add dummy UART implementation to nrf so it builds with UART turned on. Also add OneWire. 2018-02-21 22:53:17 -05:00
..
boards Removed leftover build option 2018-02-15 21:46:14 +01:00
common-hal Add dummy UART implementation to nrf so it builds with UART turned on. Also add OneWire. 2018-02-21 22:53:17 -05:00
device nrf: Remove nRF51 boards and files, update README 2018-02-07 22:44:13 +01:00
drivers nrf: Only support SD 132 v2.0.1 and v5.0.0 and SD 140 v6.0.0 2018-02-07 22:44:27 +01:00
examples ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
freeze ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
hal nrf: Remove nRF51 boards and files, update README 2018-02-07 22:44:13 +01:00
modules nrf: Change pin names on DKs to match silkscreen 2018-02-12 22:41:19 +01:00
supervisor nrf: Implement ticks, add gamepad module and example 2018-02-05 20:48:25 +01:00
.gitignore ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
Makefile Add dummy UART implementation to nrf so it builds with UART turned on. Also add OneWire. 2018-02-21 22:53:17 -05:00
README.md nrf: Remove nRF51 boards and files, update README 2018-02-07 22:44:13 +01:00
bluetooth_conf.h nrf: Get the port working on pca10056 (nRF52840) 2018-02-05 20:38:41 +01:00
fatfs_port.c ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
fifo.c nRF52 update with internal file system support 2017-12-21 13:49:14 +01:00
fifo.h nrf: Use more generic header 2018-02-02 20:31:47 +01:00
gccollect.c ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
gccollect.h ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
help.c ports/nrf: Align help.c builtin help text to use correct type after upmerge with upstream master. 2017-10-04 21:52:08 +02:00
internal_flash.c nrf: Fix memory misalignment during flash write 2018-02-10 14:43:58 +01:00
internal_flash.h nrf: Remove SAMD mentions carried over while copying files 2018-02-07 22:44:27 +01:00
mpconfigport.h Merge pull request #601 from arturo182/nrf_cleanup 2018-02-12 11:28:47 +01:00
mpconfigport.mk merge from 2.2.0 + fix up board defs 2018-01-02 21:25:41 -05:00
mphalport.c update uart to remove dependency on machine uart module 2017-12-29 21:25:43 +07:00
mphalport.h nRF52 update with internal file system support 2017-12-21 13:49:14 +01:00
nrf52_af.csv nrf: Change pin names on DKs to match silkscreen 2018-02-12 22:41:19 +01:00
pin_defs_nrf5.h nrf: Change pin names on DKs to match silkscreen 2018-02-12 22:41:19 +01:00
pin_named_pins.c ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
qstrdefsport.h ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
tick.c nrf: Implement ticks, add gamepad module and example 2018-02-05 20:48:25 +01:00
tick.h nrf: Implement ticks, add gamepad module and example 2018-02-05 20:48:25 +01:00

README.md

CircuitPython Port To The Nordic Semiconductor nRF52 Series

This is a port of CircuitPython to the Nordic Semiconductor nRF52 series of chips.

Supported Features

  • UART
  • SPI
  • LEDs
  • Pins
  • ADC
  • I2C
  • PWM
  • Temperature
  • RTC (Real Time Counter. Low-Power counter)
  • BLE support including:
    • Peripheral role
    • Scanner role
    • REPL over Bluetooth LE (optionally using WebBluetooth)
    • ubluepy: Bluetooth LE module for CircuitPython
    • 1 non-connectable advertiser while in connection

Tested Hardware

Compile and Flash

Prerequisite steps for building the nrf port:

git clone <URL>.git circuitpython
cd circuitpython
git submodule update --init
make -C mpy-cross

By default, the feather52 (nRF52832) is used as compile target. To build and flash issue the following command inside the ports/nrf/ folder:

make
make flash

Alternatively the target board could be defined:

 make BOARD=pca10056
 make flash

Compile and Flash with Bluetooth Stack

First prepare the bluetooth folder by downloading Bluetooth LE stacks and headers:

 ./drivers/bluetooth/download_ble_stack.sh

If the Bluetooth stacks has been downloaded, compile the target with the following command:

make BOARD=pca10040 SD=s132

The make sd will trigger a flash of the bluetooth stack before that application is flashed. Note that make sd will perform a full erase of the chip, which could cause 3rd party bootloaders to also be wiped.

make BOARD=pca10040 SD=s132 sd

Note: further tuning of features to include in bluetooth or even setting up the device to use REPL over Bluetooth can be configured in the bluetooth_conf.h.

Target Boards and Make Flags

Target Board (BOARD) Bluetooth Stack (SD) Bluetooth Support Flash Util
pca10040 s132 Peripheral and Scanner Segger
feather52 s132 Peripheral and Scanner UART DFU
pca10056 s140 Peripheral and Scanner Segger

Segger Targets

Install the necessary tools to flash and debug using Segger:

JLink Download

nrfjprog linux-32bit Download

nrfjprog linux-64bit Download

nrfjprog osx Download

nrfjprog win32 Download

note: On Linux it might be required to link SEGGER's libjlinkarm.so inside nrfjprog's folder.

DFU Targets

sudo apt-get install build-essential libffi-dev pkg-config gcc-arm-none-eabi git python python-pip
git clone https://github.com/adafruit/Adafruit_nRF52_Arduino.git
cd Adafruit_nRF52_Arduino/tools/nrfutil-0.5.2/
sudo pip install -r requirements.txt
sudo python setup.py install

make flash and make sd will not work with DFU targets. Hence, dfu-gen and dfu-flash must be used instead.

  • dfu-gen: Generates a Firmware zip to be used by the DFU flash application.
  • dfu-flash: Triggers the DFU flash application to upload the firmware from the generated Firmware zip file.

Example on how to generate and flash feather52 target:

make BOARD=feather52 SD=s132
make BOARD=feather52 SD=s132 dfu-gen
make BOARD=feather52 SD=s132 dfu-flash

Bluetooth LE REPL

The port also implements a BLE REPL driver. This feature is disabled by default, as it will deactivate the UART REPL when activated. As some of the nRF devices only have one UART, using the BLE REPL free's the UART instance such that it can be used as a general UART peripheral not bound to REPL.

The configuration can be enabled by editing the bluetooth_conf.h and set MICROPY_PY_BLE_NUS to 1.

When enabled you have different options to test it:

Other:

  • nRF UART application for IPhone/Android

WebBluetooth mode can also be configured by editing bluetooth_conf.h and set BLUETOOTH_WEBBLUETOOTH_REPL to 1. This will alternate advertisement between Eddystone URL and regular connectable advertisement. The Eddystone URL will point the phone or PC to download WebBluetooth REPL (experimental), which subsequently can be used to connect to the Bluetooth REPL from the PC or Phone browser.