esptool 端口的bug
Posted: Sat Jan 29, 2022 4:25 am
esptool.py的_get_pid 函数判断端口bug
if p.device in active_port:
对于使用usb jtag会误判
COM1=COM10
COM2=COM20
应该用== 麻烦修复下
if p.device in active_port:
对于使用usb jtag会误判
COM1=COM10
COM2=COM20
应该用== 麻烦修复下