Add mbctool to the list of non debug protocols

This commit is contained in:
valeros
2020-03-24 17:30:16 +02:00
parent cddaa35219
commit 9bc9c3a59f
3 changed files with 9 additions and 3 deletions
+4 -1
View File
@@ -26,10 +26,13 @@
],
"name": "Briki ABC (MBC-WB) - ESP32",
"upload": {
"protocol": "mbctool",
"flash_size": "8MB",
"maximum_ram_size": 327680,
"maximum_size": 3407872,
"protocol": "mbctool",
"protocols": [
"mbctool"
],
"require_upload_port": true,
"speed": 1500000
},
+4 -1
View File
@@ -26,10 +26,13 @@
],
"name": "Briki MBC-WB - ESP32",
"upload": {
"protocol": "mbctool",
"flash_size": "8MB",
"maximum_ram_size": 327680,
"maximum_size": 3407872,
"protocol": "mbctool",
"protocols": [
"mbctool"
],
"require_upload_port": true,
"speed": 1500000
},
+1 -1
View File
@@ -67,7 +67,7 @@ class Espressif32Platform(PlatformBase):
# debug tools
debug = board.manifest.get("debug", {})
non_debug_protocols = ["esptool", "espota"]
non_debug_protocols = ["esptool", "espota", "mbctool"]
supported_debug_tools = [
"esp-prog",
"iot-bus-jtag",