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
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -224,10 +224,12 @@ public static IEnumerable<Example> Examples
224
224
get
225
225
{
226
226
returnnewList<Example>(){
227
-
newExample("Update ESP32 device with latest fw (stable version)",newOptions{TargetName="ESP32_WROOM_32",Update=true,Stable=true}),
228
-
newExample("Update ESP32 device with latest fw (stable version), device is connected to COM31",newOptions{TargetName="ESP32_WROOM_32",Update=true,Stable=true,SerialPort="COM31"}),
229
-
newExample("Update STM32 device with latest fw (development repository)",newOptions{TargetName="ST_STM32F769I_DISCOVERY",Update=true}),
230
-
newExample("Update STM32 device with latest fw (development repository), device is connected through DFU with Id 3380386D3134",newOptions{TargetName="NETDUINO3_WIFI",Update=true,DfuDeviceId="3380386D3134"}),
227
+
newExample("Update ESP32 device with latest available firmware (nF org preview repository)",newOptions{TargetName="ESP32_WROOM_32",Update=true}),
228
+
newExample("Update ESP32 device with latest available firmware (nF org stable repository)",newOptions{TargetName="ESP32_WROOM_32",Update=true,Stable=true}),
229
+
newExample("Update ESP32 device with latest available firmware (nF org stable repository), device is connected to COM31",newOptions{TargetName="ESP32_WROOM_32",Update=true,Stable=true,SerialPort="COM31"}),
230
+
newExample("Update ESP32 device with custom firmware (local bin file)",newOptions{TargetName="ESP32_WROOM_32",DeploymentImage="<location of file>.bin"}),
231
+
newExample("Update specific STM32 device (ST_STM32F769I_DISCOVERY) with latest available firmware (nF org preview repository)",newOptions{TargetName="ST_STM32F769I_DISCOVERY",Update=true}),
232
+
newExample("Update specific STM32 device (NETDUINO3_WIFI) with latest available firmware (nf org preview repository), device is connected through DFU with Id 3380386D3134",newOptions{TargetName="NETDUINO3_WIFI",Update=true,DfuDeviceId="3380386D3134"}),
231
233
newExample("List all STM32 devices connected through JTAG",newOptions{Platform="stm32",ListJtagDevices=true}),
0 commit comments