nanoff 2.0.30

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global nanoff --version 2.0.30
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local nanoff --version 2.0.30
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=nanoff&version=2.0.30
nuke :add-package nanoff --version 2.0.30

License #yourfirstpr Build Status NuGet Discord

nanoFramework logo


Document Language: English | 中文简体

Welcome to the .NET nanoFramework firmware flasher tool repository

This repo contains the nano firmware flasher tool. It's a .NET Core Tool that allows flashing a .NET nanoFramework target with a firmware image (nanoBooter and nanoCLR), the application deployment (all assemblies required to run a .NET application) and restore previously saved deployment images. Is part of .NET nanoFramework toolbox, along with other various tools that are required in .NET nanoFramework development, usage or repository management.

It makes use of several 3rd party tools:

  • Espressif esptool You can find the esptool and licensing information on the repository here.
  • STM32 Cube Programmer You can find the source, licensing information and documentation here.
  • Texas Instruments Uniflash You can find the Uniflash tool and licensing information here.

Install .NET nanoFramework Firmware Flasher

Perform a one-time install of the .NET nanoFramework Firmware Flasher tool using the following .NET Core CLI command:

dotnet tool install -g nanoff

After a successful installation a message is displayed showing the command that's to be used to call the tool along with the version installed. Similar to the following example:

You can invoke the tool using the following command: nanoff
Tool 'nanoff' (version '9.9.9') was successfully installed.

nanoff install flash

Install path issues

⚠️ That are know issues running commands for STM32 devices when nanoff is installed in a path that contains diacritic characters. This is caused by a known bug in STM32 Cube Programmer. If that's the case with your user path, for example, you have to install it in a location that does have those. To accomplish that, use the following .NET Core CLI command on which the path where the tool will be installed is specified:

dotnet tool install nanoff --tool-path c:\a-plain-simple-path-to-install-the-tool

Note that if you're not using nanoff with STM32 devices, this limitation does not apply.

MacOS users

You'll need to add nanoff to your path as well, once installed run:

export PATH=$PATH:~/.dotnet/tools

Update .NET nanoFramework Firmware Flasher

To update .NET nanoFramework Firmware Flasher tool use the following .NET Core CLI command:

dotnet tool update -g nanoff

If the tool was installed at a specific path, use the following .NET Core CLI command instead:

dotnet tool update nanoff --tool-path c:\path-where-the-tool-was-installed

Usage

Once the tool is installed, you can call it by using its command nanoff, which is a short version of the name to ease typing.

nanoff [command] [args]

The tool includes help for all available commands. You can see a list of all available ones by entering:

nanoff --help

ESP32 usage examples

There are multiple ESP32 images available, some are build specifically for a target. Please check out the list. You will need as well to know the COM port used by your device. Find how to do this here. Alternatively, you can as well list the available COM ports. If you list them first without the device to flash and then plugging the device, the additional port which will show up is the one for the device to flash. This method works for all OS:

nanoff --listports

The ESP32_PSRAM_REV0 image will just work for any variant of the ESP32 series, with or without PSRAM, and for all silicon revisions. You can read more about the differences between the various images here.

The FEATHER_S2 image will just work for pretty much all variants of the ESP32-S2 series that expose the embedded USB CDC pins. You can read more about the differences between the various images here.

When using nanoff you can add --target MY_TARGET_NAME_HERE to use a specific image. If, instead, you just specify the platform with --platform esp32 nanoff will choose the most appropriate image depending on the features of the device that's connected. Output similar to this one will show to advise what's the image about to be used:

No target name was provided! Using 'ESP32_REV0' based on the device characteristics.

Note: Please note that for ESP32-S2 targets is not possible to safely determine what's the best image to use. For this reason it's mandatory providing the appropriate target name with --target MY_TARGET_NAME_HERE.

Some ESP32 boards have issues entering bootloader mode. This can be usually overcome by holding down the BOOT/FLASH button in the board. In case nanoff detects this situation the following warning is shown:

*** Hold down the BOOT/FLASH button in ESP32 board ***

⚠️ To update FeatherS2 and TinyS2 the boards need to put in download mode by holding [BOOT], clicking [RESET] and then releasing [BOOT].

Update the firmware of an ESP32 target

To update the firmware of an ESP32 target connected to COM31, to the latest available development version.

nanoff --update --target ESP32_PSRAM_REV0 --serialport COM31

Update the firmware of an ESP32-S2 KALUGA 1 with a local CLR file

To update the firmware of an ESP32-S2 KALUGA 1 target connected to COM31 with a local CLR file (for example from a build). This file has to be a binary file with a valid CLR from a build. No other checks or validations are performed on the file content.

nanoff --update --target KALUGA_1 --serialport COM31 --clrfile "C:\nf-interpreter\build\nanoCLR.bin" 

You can adjust the name of the core image you want to use. Refer to the previous section to get the full list.

Show details of the connected ESP32 device

To show the details of the ESP32 device connected to COM31.

nanoff --platform esp32 --serialport COM31 --devicedetails 

Deploy a managed application to an ESP32 target

To deploy a managed application to an ESP32_PSRAM_REV0 target connected to COM31.

Note: The binary file with the deployment image can be found on the Release or Debug folder of a Visual Studio project after a successful build. This file contains everything that's required to deploy a managed application to a target (meaning application executable and all referenced libraries and assemblies).

nanoff --target ESP32_PSRAM_REV0 --serialport COM12 --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin"

Update the firmware of an ESP32 target along with a managed application

To deploy an application on an ESP32 target connected to COM31, with your application, you have to specify the path to the managed application. Optionally you can provide an address which will override the default deployment address. This example uses the binary format file that you can find when you are building an application. Note, as only application can run, when you are building a library, a bin file is not created automatically. Only for applications.

nanoff --target ESP32_PSRAM_REV0 --update --serialport COM31 --deploy --image "c:\eps32-backups\my_awesome_app.bin" --address 0x1B000

STMP32 usage examples

Update the firmware of a specific STM32 target

To update the firmware of the ST_STM32F769I_DISCOVERY target to the latest available stable version using the JTAG connection.

nanoff --update --target ST_STM32F769I_DISCOVERY --jtag

Deploy a managed application to a ST_STM32F769I_DISCOVERY target

To deploy a managed application to a ST_STM32F769I_DISCOVERY target, which has the deployment region at 0x08080000 flash address and reset the MCU after flashing it.

Note: The binary file with the deployment image can be found on the Release or Debug folder of a Visual Studio project after a successful build. This file contains everything that's required to deploy a managed application to a target (meaning application executable and all referenced libraries and assemblies).

nanoff --target ST_STM32F769I_DISCOVERY --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin" --address 0x08040000 --reset

Update the firmware of a ST_STM32F769I_DISCOVERY along with a managed application

To update the firmware of the ST_STM32F769I_DISCOVERY target to the latest available preview version, using a JTAG connection, along with a managed application. You have to specify the path to the managed application. This example uses the binary format file that is generated by Visual Studio when building any nanoFramework C# application. Because it's a binary file you have to specify too the flash address of the deployment region (here 0x08000000, mind the hexadecimal format).

nanoff --update --target ST_STM32F769I_DISCOVERY --preview --jtag --binfile "c:\dev\my awesome app\bin\debug\my_awesome_app.bin" --address 0x08000000

List all STM32 devices available with JTAG connection

This useful to list all STM32 devices that are connected through JTAG.

nanoff --listjtag

List all STM32 devices available with DFU connection

This useful to list all STM32 devices that are connected through DFU.

nanoff --listdfu

Install STM32 JTAG drivers

To install the drivers for STM32 JTAG connected targets.

nanoff --installjtagdrivers

Install STM32 DFU drivers

To install the drivers for STM32 DFU connected targets.

nanoff --installdfudrivers

TI CC13x2 usage examples

Update the firmware of a specific TI CC13x2 target

To update the firmware of the TI_CC1352R1_LAUNCHXL target to the latest preview version.

nanoff --update --target TI_CC1352R1_LAUNCHXL --preview

Install the XDS110 USB drivers required by TI LaunchPad targets

To install the XDS110 USB drivers.

nanoff --installxdsdrivers

Pre-check if target fits connected device

The tool tries to make a best effort sanity check on whether the requested target fits the connected target. Sometimes that's not possible because of the differences and variations on the target names, or lack of details provided by the connected device or even (like with DFU connected devices) because it's not possible to determine exactly what device is connected at all. This doesn't necessarily mean that the firmware wont' work, so take this as an advice only.

To disable this validation add --nofitcheck option to the command line.

Tool output verbosity

The tool output verbosity can be set through the v|verbosity option.

This is convenient, for example, if this tool is being used in a automated process where the minimum output is desired to ease processing the return result of the execution. It can be set to:

  • q[uiet]
  • m[inimal]
  • n[ormal]
  • d[etailed]
  • diag[nostic]
nanoff -v q

Finding the device COM port on Windows

You need to know the COM Port attached to your device. Search for Computer Management, select Device Manager then expand Ports (COM & LPT), you will find the COM port of the connected device.

IMPORTANT: you may have to install drivers. Refer to the vendor website or use Windows Update to install the latest version of the drivers.

Finding COM Port

Finding the device COM port using nanoff

You can use the --listports command with nanoff to list the available COM ports. This method works on all OS. If you run the command first without your device plugged, you'll get a first list. Then plug your device and run the command again. The new COM port showing up is the one from your device!

nanoff --listports

Example of outcomes when there is no device plugged in:

No available COM port

And when you then plug the device and run the command again:

Available COM ports:
  COM12

List targets

You can list the supported targets, their versions, either for stable versions or preview. --platform allows you to filter for a platform. --preview filters the query to show only preview versions.

List packages available for ESP32 targets in preview version.

nanoff --listboards --platform esp32 --preview

List packages available for STM32 targets in (stable version).

nanoff --listboards --platform stm32

If you just use --listtargets switch, you'll get the list of all the stable packages for all targets.

Clear cache location

If needed one can clear the local cache from the firmware packages that are stored there. As an additional information the cache location is the directory -nanoFramework\fw_cache in the user folder.

When this option is included in the command no other options are processed.

nanoff --clearcache

Exit codes

The exit codes can be checked in this source file.

Feedback and documentation

To provide feedback, report issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework firmware flasher tool is licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
2.5.60 941 3/25/2024
2.5.59 1,387 3/21/2024
2.5.58 5,757 1/31/2024
2.5.56 2,715 1/4/2024
2.5.54 1,292 1/2/2024
2.5.52 2,262 12/22/2023
2.5.49 988 12/21/2023
2.5.46 7,645 10/27/2023
2.5.45 1,030 10/24/2023
2.5.44 1,273 10/19/2023
2.5.43 388 10/19/2023
2.5.38 2,710 10/9/2023
2.5.36 6,871 8/23/2023
2.5.34 5,445 7/14/2023
2.5.33 609 7/14/2023
2.5.32 801 7/14/2023
2.5.28 2,509 6/28/2023
2.5.25 726 6/27/2023
2.5.24 1,348 6/19/2023
2.5.21 777 6/14/2023
2.5.10 939 5/31/2023
2.5.3 680 5/29/2023
2.5.2 991 5/12/2023
2.5.1 2,699 4/27/2023
2.4.36 757 4/27/2023
2.4.35 802 4/27/2023
2.4.34 717 4/26/2023
2.4.33 2,172 4/17/2023
2.4.31 4,840 3/15/2023
2.4.30 3,672 2/22/2023
2.4.28 1,785 2/17/2023
2.4.24 2,959 12/19/2022
2.4.22 1,212 12/17/2022
2.4.19 1,163 12/16/2022
2.4.14 1,068 12/13/2022
2.4.2 1,761 11/16/2022
2.4.1 1,388 11/16/2022
2.3.12 1,543 11/9/2022
2.3.9 2,165 9/7/2022
2.3.7 1,221 9/5/2022
2.3.4 2,880 8/25/2022
2.3.1 1,360 8/24/2022
2.2.5 1,639 8/22/2022
2.2.2 1,315 8/22/2022
2.2.1 1,170 8/22/2022
2.1.16 1,794 8/19/2022
2.1.15 1,090 8/19/2022
2.1.14 1,172 8/19/2022
2.1.11 1,293 8/18/2022
2.1.7 4,702 7/14/2022
2.1.6 1,755 7/14/2022
2.1.5 1,639 7/13/2022
2.1.2 2,356 7/6/2022
2.0.67 2,718 6/14/2022
2.0.66 2,065 6/9/2022
2.0.65 2,204 6/1/2022
2.0.62 3,106 5/19/2022
2.0.60 1,635 5/17/2022
2.0.58 3,524 4/27/2022
2.0.57 2,218 4/21/2022
2.0.56 1,670 4/20/2022
2.0.55 1,903 4/18/2022
2.0.51 2,717 4/18/2022
2.0.47 2,440 4/18/2022
2.0.44 2,449 4/14/2022
2.0.41 2,959 3/31/2022
2.0.39 2,381 3/31/2022
2.0.34 2,670 3/8/2022
2.0.30 2,372 2/23/2022
2.0.28 2,319 2/18/2022
2.0.26 2,296 2/18/2022
2.0.25 2,486 2/18/2022
2.0.15 2,316 2/10/2022
2.0.9 2,317 12/27/2021
2.0.7 1,422 12/23/2021
2.0.6 1,456 12/22/2021
2.0.5 1,303 12/17/2021
2.0.3 1,313 12/16/2021
1.29.8 1,399 11/29/2021
1.29.5 3,090 11/26/2021
1.29.1 1,279 11/17/2021
1.28.2 1,885 11/4/2021
1.28.1 1,297 10/28/2021
1.27.1 1,543 10/15/2021
1.26.5 1,095 10/14/2021
1.26.4 1,448 10/7/2021
1.26.3 2,459 10/6/2021
1.26.1 2,270 10/5/2021
1.25.4 2,424 10/5/2021
1.25.1 1,292 8/25/2021
1.24.7 981 8/25/2021
1.24.6 1,098 8/25/2021
1.24.2 1,009 8/24/2021
1.24.1 1,020 8/17/2021
1.23.3 1,028 8/16/2021
1.23.1 1,062 8/16/2021
1.22.9 1,125 8/9/2021
1.22.7 1,199 7/21/2021
1.22.6 1,163 7/17/2021
1.22.5 1,227 6/29/2021
1.22.4 988 6/25/2021
1.22.2 1,013 6/24/2021
1.22.1 1,048 6/23/2021
1.22.0 1,096 6/23/2021
1.20.1 710 6/22/2021
1.20.0-preview.13 271 6/18/2021
1.20.0-preview.12 272 6/17/2021
1.20.0-preview.8 303 5/10/2021
1.19.0 1,106 3/31/2021
1.19.0-preview.1 299 3/24/2021
1.17.0-preview.6 259 3/19/2021
1.16.2 786 3/15/2021
1.16.1-preview.1 383 12/3/2020
1.16.0-preview.3 407 7/13/2020
1.15.0 1,521 7/13/2020
1.14.0 981 7/2/2020
1.14.0-preview.9 481 7/2/2020