Make generic FTDI debug tool

This commit is contained in:
Ivan Kravets
2018-08-01 20:25:36 +03:00
parent bd5e5a7877
commit 3e4c361d14
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -23,10 +23,10 @@
],
"debug": {
"default_tools": [
"ft2232h"
"ftdi"
],
"onboard_tools": [
"ft2232h"
"ftdi"
],
"openocd_board": "esp32-wrover.cfg"
},
@@ -42,7 +42,7 @@
"protocol": "esptool",
"protocols": [
"esptool",
"ft2232h",
"ftdi",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"olimex-arm-usb-ocd",
+1 -1
View File
@@ -44,7 +44,7 @@ class Espressif32Platform(PlatformBase):
if "tools" not in debug:
debug['tools'] = {}
available_tools = ("ft2232h", "minimodule", "olimex-arm-usb-tiny-h",
available_tools = ("ftdi", "minimodule", "olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h", "olimex-arm-usb-ocd",
"olimex-jtag-tiny")