Skip to content

Commit 1a8b91a

Browse files
committed
Update README with new argument options to deploy managed apps
Signed-off-by: José Simões <[email protected]>
1 parent 5b3aab3 commit 1a8b91a

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

README.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,22 @@ The tool includes help for all available commands. You can see a list of all ava
6060
nanoff --help
6161
```
6262

63-
### Update the firmware of an ESP32 target
63+
### Update the firmware of an ESP32_WROOM_32 target
6464

65-
To update the firmware of an ESP32 target connected to COM31, to the latest available development version.
65+
To update the firmware of an ESP32_WROOM_32 target connected to COM31, to the latest available development version.
66+
67+
```console
68+
nanoff --update --target ESP32_WROOM_32 --serialport COM31
69+
```
70+
71+
### Deploy a managed application to an ESP32_WROOM_32 target
72+
73+
To deploy a managed application to an ESP32_WROOM_32 target connected to COM31, which has the deployment region at 0x190000 flash address.
74+
75+
>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).
6676
6777
```console
68-
nanoff --update --platform esp32 --serialport COM31
78+
nanoff --target ESP32_WROOM_32 --serialport COM12 --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin" --address 0x190000
6979
```
7080

7181
### Update the firmware of an ESP32 target along with a managed application
@@ -75,7 +85,7 @@ You have to specify the path to the managed application.
7585
This example uses the binary format file that was saved on a previous backup operation.
7686

7787
```console
78-
nanoff --update --platform esp32 --serialport COM31 --deployment "c:\eps32-backups\my_awesome_app.bin"
88+
nanoff --update --target ESP32_WROOM_32 --serialport COM31 --deployment "c:\eps32-backups\my_awesome_app.bin"
7989
```
8090

8191
### Update the firmware of a specific STM32 target
@@ -86,6 +96,16 @@ To update the firmware of the NETDUINO3_WIFI target to the latest available stab
8696
nanoff --update --target NETDUINO3_WIFI --stable
8797
```
8898

99+
### Deploy a managed application to a ST_STM32F769I_DISCOVERY target
100+
101+
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.
102+
103+
>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).
104+
105+
```console
106+
nanoff --target ST_STM32F769I_DISCOVERY --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin" --address 0x08040000 --reset
107+
```
108+
89109
### Update the firmware of a ST_STM32F769I_DISCOVERY along with a managed application
90110

91111
To update the firmware of the ST_STM32F769I_DISCOVERY target to the latest available preview version along with a managed application.

0 commit comments

Comments
 (0)