From 8ebe00d1a9fd9dd86ced1c0137cc6485d03e9b52 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Fri, 7 May 2021 08:59:41 +0100 Subject: [PATCH] Help option improvements for ESP32 (#50) ***NO_CI*** --- nanoFirmwareFlasher/Options.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nanoFirmwareFlasher/Options.cs b/nanoFirmwareFlasher/Options.cs index 980b9aae..d6ec4f20 100644 --- a/nanoFirmwareFlasher/Options.cs +++ b/nanoFirmwareFlasher/Options.cs @@ -224,10 +224,12 @@ public static IEnumerable Examples get { return new List() { - new Example("Update ESP32 device with latest fw (stable version)", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true }), - 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" }), - new Example("Update STM32 device with latest fw (development repository)", new Options { TargetName = "ST_STM32F769I_DISCOVERY" , Update = true}), - 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" }), + new Example("Update ESP32 device with latest available firmware (nF org preview repository)", new Options { TargetName = "ESP32_WROOM_32" , Update = true}), + new Example("Update ESP32 device with latest available firmware (nF org stable repository)", new Options { TargetName = "ESP32_WROOM_32", Update = true, Stable = true }), + 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" }), + new Example("Update ESP32 device with custom firmware (local bin file)", new Options { TargetName = "ESP32_WROOM_32" , DeploymentImage = ".bin"}), + 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}), + 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" }), new Example("List all STM32 devices connected through JTAG", new Options { Platform = "stm32", ListJtagDevices = true}), }; }