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
Copy file name to clipboardExpand all lines: nanoFirmwareFlasher/Options.cs
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -306,14 +306,15 @@ 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 ESP32 device with latest available firmware (stable version), device is connected to COM31",newOptions{TargetName="ESP32_PSRAM_REV0",Update=true,SerialPort="COM31"}),
311
-
new("Update ESP32 device with custom firmware (local bin file)",newOptions{TargetName="ESP_WROVER_KIT",DeploymentImage="<location of file>.bin"}),
312
-
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}),
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
-
new("List all STM32 devices connected through JTAG",newOptions{Platform=SupportedPlatform.esp32,ListJtagDevices=true}),
new("List all available targets",newOptions{ListTargets=true,Preview=true,Platform=SupportedPlatform.stm32}),
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}),
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
+
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
+
new("- List all STM32 devices connected through JTAG",newOptions{Platform=SupportedPlatform.esp32,ListJtagDevices=true}),
0 commit comments