Skip to content

Commit 8ebe00d

Browse files
Help option improvements for ESP32 (#50)
***NO_CI***
1 parent 159ddf2 commit 8ebe00d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

nanoFirmwareFlasher/Options.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,12 @@ public static IEnumerable<Example> Examples
224224
get
225225
{
226226
return new List<Example>() {
227-
new Example("Update ESP32 device with latest fw (stable version)", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true }),
228-
new Example("Update ESP32 device with latest fw (stable version), device is connected to COM31", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true, SerialPort = "COM31" }),
229-
new Example("Update STM32 device with latest fw (development repository)", new Options { TargetName = "ST_STM32F769I_DISCOVERY" , Update = true}),
230-
new Example("Update STM32 device with latest fw (development repository), device is connected through DFU with Id 3380386D3134", new Options { TargetName = "NETDUINO3_WIFI", Update = true, DfuDeviceId = "3380386D3134" }),
227+
new Example("Update ESP32 device with latest available firmware (nF org preview repository)", new Options { TargetName = "ESP32_WROOM_32" , Update = true}),
228+
new Example("Update ESP32 device with latest available firmware (nF org stable repository)", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true }),
229+
new Example("Update ESP32 device with latest available firmware (nF org stable repository), device is connected to COM31", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true, SerialPort = "COM31" }),
230+
new Example("Update ESP32 device with custom firmware (local bin file)", new Options { TargetName = "ESP32_WROOM_32" , DeploymentImage = "<location of file>.bin"}),
231+
new Example("Update specific STM32 device (ST_STM32F769I_DISCOVERY) with latest available firmware (nF org preview repository)", new Options { TargetName = "ST_STM32F769I_DISCOVERY" , Update = true}),
232+
new Example("Update specific STM32 device (NETDUINO3_WIFI) with latest available firmware (nf org preview repository), device is connected through DFU with Id 3380386D3134", new Options { TargetName = "NETDUINO3_WIFI", Update = true, DfuDeviceId = "3380386D3134" }),
231233
new Example("List all STM32 devices connected through JTAG", new Options { Platform = "stm32", ListJtagDevices = true}),
232234
};
233235
}

0 commit comments

Comments
 (0)