You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Update the firmware of a ST_STM32F769I_DISCOVERY along with a managed application
186
186
187
-
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.
187
+
To update the firmware of the ST_STM32F769I_DISCOVERY target to the latest available version, using a JTAG connection, along with a managed application.
188
188
You have to specify the path to the managed application.
189
189
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).
### List all STM32 devices available with JTAG connection
@@ -297,21 +297,21 @@ Available COM ports:
297
297
298
298
## List targets
299
299
300
-
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.
300
+
You can list the supported targets, and their version using the `--platform`parameter.
301
301
302
-
List packages available for ESP32 targets in preview version.
302
+
List packages available for ESP32 targets:
303
303
304
304
```console
305
-
nanoff --listboards --platform esp32 --preview
305
+
nanoff --listboards --platform esp32
306
306
```
307
307
308
-
List packages available for STM32 targets in (stable version).
308
+
List packages available for STM32 targets:
309
309
310
310
```console
311
311
nanoff --listboards --platform stm32
312
312
```
313
313
314
-
If you just use `--listtargets` switch, you'll get the list of all the stable packages for all targets.
314
+
If you use the `--listtargets` switch in conjunction with `--preview`, you'll get the list of packages that maybe used for experimental or major feature changes.
Copy file name to clipboardExpand all lines: nanoFirmwareFlasher/Options.cs
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,7 @@ public class Options
234
234
"preview",
235
235
Required=false,
236
236
Default=false,
237
-
HelpText="Preview version. Will download the firmware package from the preview repository.")]
237
+
HelpText="Download a firmware package from the preview repository that includes major changes or experimental features.")]
238
238
publicboolPreview{get;set;}
239
239
240
240
[Option(
@@ -306,14 +306,13 @@ public class Options
306
306
publicstaticIEnumerable<Example>Examples=>
307
307
newList<Example>
308
308
{
309
-
new("- Update ESP32 WROVER Kit device with latest available firmware (stable version)",newOptions{TargetName="ESP_WROVER_KIT",Update=true}),
310
-
new("- Update specific STM32 device (ST_STM32F769I_DISCOVERY) with latest available firmware (preview version), using JTAG interface",newOptions{TargetName="ST_STM32F769I_DISCOVERY",Update=true,Preview=true,JtagUpdate=true}),
309
+
new("- Update ESP32 WROVER Kit device with latest available firmware",newOptions{TargetName="ESP_WROVER_KIT",Update=true}),
310
+
new("- Update specific STM32 device (ST_STM32F769I_DISCOVERY) with latest available firmware, using JTAG interface",newOptions{TargetName="ST_STM32F769I_DISCOVERY",Update=true,JtagUpdate=true}),
311
311
new("- Update ESP32 device with latest available firmware (stable version), device is connected to COM31",newOptions{TargetName="ESP32_PSRAM_REV0",Update=true,SerialPort="COM31"}),
312
312
new("- Update ESP32 device with custom firmware (local bin file)",newOptions{TargetName="ESP_WROVER_KIT",DeploymentImage="<location of file>.bin"}),
313
-
new("- Update specific STM32 device (NETDUINO3_WIFI) with latest available firmware (preview version), device is connected through DFU with Id 3380386D3134",newOptions{TargetName="NETDUINO3_WIFI",Update=true,Preview=true,DfuDeviceId="3380386D3134"}),
314
313
new("- List all STM32 devices connected through JTAG",newOptions{Platform=SupportedPlatform.esp32,ListJtagDevices=true}),
0 commit comments