docs: jtag debugging: add macOS 10.15 FTDI details

Merges https://github.com/espressif/esp-idf/pull/5949
This commit is contained in:
Eli
2020-10-05 02:38:28 +01:00
committed by Ivan Grokhotkov
parent cb179fe105
commit 9ec19163ed
2 changed files with 25 additions and 4 deletions

View File

@@ -112,9 +112,20 @@ Manually unloading the driver
sudo kextunload -b com.FTDI.driver.FTDIUSBSerialDriver sudo kextunload -b com.FTDI.driver.FTDIUSBSerialDriver
In some cases you may need to unload Apple's FTDI driver as well:: In some cases you may need to unload Apple's FTDI driver as well:
* macOS < 10.15::
sudo kextunload -b com.apple.driver.AppleUSBFTDI
* macOS 10.15::
sudo kextunload -b com.apple.DriverKit-AppleUSBFTDI
.. warning::
Attempting to use serial over the wrong channel with the FTDI driver will cause a kernel panic. The ESP-WROVER-KIT uses channel A for JTAG and channel B for serial.
sudo kextunload -b com.apple.driver.AppleUSBFTDI
4. Run OpenOCD: 4. Run OpenOCD:

View File

@@ -112,9 +112,19 @@ MacOS
sudo kextunload -b com.FTDI.driver.FTDIUSBSerialDriver sudo kextunload -b com.FTDI.driver.FTDIUSBSerialDriver
有时,您可能还需要卸载苹果的 FTDI 驱动:: 有时,您可能还需要卸载苹果的 FTDI 驱动:
sudo kextunload -b com.apple.driver.AppleUSBFTDI * macOS < 10.15::
sudo kextunload -b com.apple.driver.AppleUSBFTDI
* macOS 10.15::
sudo kextunload -b com.apple.DriverKit-AppleUSBFTDI
.. warning::
对于 FTDI 驱动如果使用串口的通道不正确则可能会导致内核崩溃。ESP-WROVER-KIT 将通道 A 用于 JTAG通道 B 用于串口。
4. 运行 OpenOCD:: 4. 运行 OpenOCD::