Skip to content

rgoliver/pc-nrfutil

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nrfutil

nrfutil is a Python package that includes the nrfutil command line utility and the nordicsemi library.

About

The library is written for Python 2.7.

Versions

There are 2 different and incompatible DFU package formats:

  • legacy: used a simple structure and no security
  • modern: uses Google's protocol buffers for serialization and can be cryptographically signed

The DFU package format transitioned from legacy to modern in SDK 11.1. Depending on the SDK version that you are using you will need to select a release of this tool compatible with it:

  • Version 0.5.0 generates legacy firmware packages compatible with nRF SDK 11.0 and older
  • Version 1.0.0 and later generate modern firmware packages compatible with nRF SDK 11.1 and newer

Prerequisites

To install nrfutil the following prerequisites must be satisfied:

py2exe prerequisites (Windows only):

Installation

To install the library to the local Python site-packages and script folder:

python setup.py install

To generate a self-contained Windows exe version of the utility (Windows only):

python setup.py py2exe

NOTE: Some anti-virus programs will stop py2exe from executing correctly when it modifies the .exe file.

Usage

To get info on usage of nrfutil:

nrfutil --help

Commands

There are several commands that you can use to perform different tasks related to DFU:

dfu

This set of commands allow you to both generate a package for over-the-air DFU or perform an actual update over a serial line.

genpkg

Generate a package (.zip file) that you can later use with a mobile application or any other means to update the firmware of an nRF5x IC over the air. This command takes several options that you can list using:

nrfutil dfu genpkg --help

Below is an example of the generation of a package from an application's app.hex file:

nrfutil dfu genpkg --application app.hex --key-file key.pem app_dfu_package.zip
serial

Perform a full DFU procedure over a serial (UART) line. This command takes several options that you can list using:

nrfutil dfu serial --help

Below is an example of the execution of a DFU procedure of the file generated above over COM3 at 115200 bits per second:

nrfutil dfu serial -pkg app_dfu_package.zip -p COM3 -b 115200

keys

This set of commands allow you to generate and display cryptographic keys used to sign and verify DFU packages.

generate

Generate a private (signing) key and store it in a file in PEM format. The following will generate a private key and store it in a file named private.pem:

nrfutil keys generate private.pem
display

Display a private (signing) or public (verification) key from a PEM file taken as input. This command takes several options that you can list using:

nrfutil keys display --help

Below is an example of displaying a public key in code format from the key file generated above:

nrfutil keys display --key pk --format code private.pem

version

This command displays the version of nrfutil.

About

nrfutil python library and command line client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 66.3%
  • Gherkin 33.3%
  • Protocol Buffer 0.4%