circuitpython/ports/nrf
Scott Shawcroft b91202969a
Merge pull request #982 from arturo182/nrf_makefile
nrf: Save some flash bytes by using extra compile flags
2018-07-02 14:33:47 -07:00
..
boards nrf: Rename feather52 to feather52832 in readme files 2018-06-22 10:04:39 +02:00
common-hal Merge pull request #972 from arturo182/nrf_i2c 2018-07-02 14:33:06 -07:00
device/nrf52 nrf: Rewrite the SPI common-hal using nrfx 2018-06-25 23:46:34 +02:00
drivers nrf: Add a nrfx submodule and prepare for using the new drivers 2018-06-20 20:43:59 +02:00
examples nrf: Remove really old examples 2018-06-20 23:38:18 +02:00
freeze ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
hal nrf: Remove unneeded hal files 2018-06-27 21:00:34 +02:00
modules nrf: Cleanup machine and microbit leftovers 2018-06-20 23:30:34 +02:00
nrfx@293f553ed9 nrf: Add a nrfx submodule and prepare for using the new drivers 2018-06-20 20:43:59 +02:00
supervisor nrf: Add a nrfx submodule and prepare for using the new drivers 2018-06-20 20:43:59 +02:00
.gitignore ports/nrf: Moving nrf51/52 port to new ports directory 2017-10-04 21:46:48 +02:00
Makefile Merge pull request #982 from arturo182/nrf_makefile 2018-07-02 14:33:47 -07:00
README.md nrf: Rename feather52 to feather52832 in readme files 2018-06-22 10:04:39 +02:00
bluetooth_conf.h nrf: Remove unsupported softdevice defines 2018-06-27 20:48:57 +02: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 nrf: Cleanup machine and microbit leftovers 2018-06-20 23:30:34 +02:00
mpconfigport.mk merge from 2.2.0 + fix up board defs 2018-01-02 21:25:41 -05:00
mphalport.c nrf: Remove leftovers from stm32 code copy 2018-06-25 23:38:10 +02:00
mphalport.h nRF52 update with internal file system support 2017-12-21 13:49:14 +01:00
nrf52_af.csv nrf: Simplify pin generation and definition 2018-06-20 23:26:32 +02:00
nrfx_config.h nrf: Rewrite the I2C common-hal using nrfx 2018-06-28 22:45:02 +02:00
nrfx_glue.h nrf: Rewrite more common-hal with nrfx and sync with atsamd port 2018-06-27 20:55:29 +02:00
nrfx_log.h nrf: Rewrite the SPI common-hal using nrfx 2018-06-25 23:46:34 +02:00
pin.h nrf: Simplify pin generation and definition 2018-06-20 23:26:32 +02:00
qstrdefsport.h nrf: Remove old qstr defines 2018-06-27 20:52:13 +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 feather52832 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
feather52832 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 feather52832 target:

make BOARD=feather52832 SD=s132
make BOARD=feather52832 SD=s132 dfu-gen
make BOARD=feather52832 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.