change(port_detection): Filter out BT and WLAN debug serial ports on MacOS

Closes https://github.com/espressif/esp-idf/issues/14058
This commit is contained in:
Radim Karniš 2024-06-24 16:12:35 +02:00 committed by BOT
parent 7ccddb8cc2
commit ed9b2d1fd6

View File

@ -129,6 +129,12 @@ def get_default_serial_port() -> Any:
import esptool
import serial.tools.list_ports
ports = list(sorted(p.device for p in serial.tools.list_ports.comports()))
if sys.platform == 'darwin':
ports = [
port
for port in ports
if not port.endswith(('Bluetooth-Incoming-Port', 'wlan-debug'))
]
# high baud rate could cause the failure of creation of the connection
esp = esptool.get_default_connected_device(serial_list=ports, port=None, connect_attempts=4,
initial_baud=115200)