Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion builder/esp32.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,8 @@ def update_mpconfigport():
'#ifdef MICROPY_HW_ESP_USB_SERIAL_JTAG',
'#undef MICROPY_HW_ESP_USB_SERIAL_JTAG',
'#endif',
f'#define MICROPY_HW_ESP_USB_SERIAL_JTAG ({int(enable_jtag_repl.lower() == "y")})'
f'#define MICROPY_HW_ESP_USB_SERIAL_JTAG ({int(enable_jtag_repl.lower() == "y")})',
'#define USB_SERIAL_JTAG_PACKET_SZ_BYTES (64)'
])

repl_data.extend([
Expand Down
Loading