mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
parent
7ccddb8cc2
commit
ed9b2d1fd6
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user