Skip to content

Commit 9bc9c3a

Browse files
committed
Add mbctool to the list of non debug protocols
1 parent cddaa35 commit 9bc9c3a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

boards/briki_abc_esp32.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,13 @@
2626
],
2727
"name": "Briki ABC (MBC-WB) - ESP32",
2828
"upload": {
29-
"protocol": "mbctool",
3029
"flash_size": "8MB",
3130
"maximum_ram_size": 327680,
3231
"maximum_size": 3407872,
32+
"protocol": "mbctool",
33+
"protocols": [
34+
"mbctool"
35+
],
3336
"require_upload_port": true,
3437
"speed": 1500000
3538
},

boards/briki_mbc-wb_esp32.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,13 @@
2626
],
2727
"name": "Briki MBC-WB - ESP32",
2828
"upload": {
29-
"protocol": "mbctool",
3029
"flash_size": "8MB",
3130
"maximum_ram_size": 327680,
3231
"maximum_size": 3407872,
32+
"protocol": "mbctool",
33+
"protocols": [
34+
"mbctool"
35+
],
3336
"require_upload_port": true,
3437
"speed": 1500000
3538
},

platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _add_dynamic_options(self, board):
6767

6868
# debug tools
6969
debug = board.manifest.get("debug", {})
70-
non_debug_protocols = ["esptool", "espota"]
70+
non_debug_protocols = ["esptool", "espota", "mbctool"]
7171
supported_debug_tools = [
7272
"esp-prog",
7373
"iot-bus-jtag",

0 commit comments

Comments
 (0)