The CH340G USB-to-UART chip is used by a number of inexpensive development boards (e.g. WEMOS and LOLIN branded boards) and USB-to-serial adapters. It is manufactured by a Chinese company called WinChipHead or WCH (International web site, Chinese web site). Unfortunately, it often causes problems on macOS. This guide helps you resolve any problems you might have with the boards and adapters.
Like many USB-to-serial solutions, it requires a driver that creates the serial port when the board or adapter is plugged into a USB port of your Mac. Starting with macOS 10.14 Mojave, macOS provides suitable drivers out of the box, implemented by Apple itself. So no additional software is needed.
Main issues
On macOS Catalina 10 32 & 64 bit. There does seem to be some bad luck going with Mojave and drivers, especially the CH340 but I seen some things that make me think it might extend to the ATmega16U2 as well. On macOS 10.13 everything was working ok. Of your computer, or CH34X chipset is the. ELEGOO Arduino Nano Board V3.0+/V3.0 CH340 USB Driver. Click to download: Nano 3.0+ Nano 3.0. Related Articles. ELEGOO Smart Robot Car Kit.

There are three main issues:
- Most boards only work for upload speeds / data rates up to 460,800 bps.
- Many users have additional drivers from WCH or Repleo installed, either from earlier macOS versions or because of obsolete tips and instructions on the internet. With the additional drivers, two serial ports will be created and one of them will be non-functional. Furthermore PlatformIO will no longer be able to automatically select the port.
- There are many forums and web pages with instructions how to install the WCH driver. Unfortunately, they are obsolete. While they were helpful back then, they now cause additional trouble.
Setup
Do not install any additional software for the CH340G if you are using the macOS 10.14 Mojave or later (including macOS Big Sur). macOS includes all the required components. Additional software will cause additional problems.
In your PlatformIO project, add the below line to platformio.ini
and you should be ready to upload your sketch:
If you have an older macOS version and cannot upgrade to the latest version, you can download the driver from here.
How to check for Apple drivers
macOS Catalina, macOS Big Sur and later:
should result in something like:
For macOS Mojave, check with ls -l /System/Library/Extensions
.
How to check for other drivers
You can check for additional drivers by executing (in a terminal):
The output will look something like this:
The last entry usbserial.kext
is the WCH driver. You should uninstall it (see below). The same would apply to the driver from Repleo. It’s called osx-ch341.kext
.

If you can’t see any of these drivers, also check ls -l /System/Library/Extensions
.
How to uninstall the WCH driver
To uninstall the driver:
- Unplug all boards/adapters with a CH340G chip
- Execute the following commands to first unload and then uninstall the driver:
If you remove the driver without first unloading it, you will have to reboot your Mac. If you stick to the order, no reboot is required.
If you want to remove a different driver or a driver in a different location, modify the command line, e.g.:
How to limit the upload speed
The CH340G and/or its driver do not reliably work with speeds of 921,600, yet that’s the default in PlatformIO for many boards. So the below line is required in platformio.ini
:
Monitor speed is usually 115,200 and therefore does not need to be changed.
Checking for the serial port
When you plug in your board, the serial port should appear in /dev
and have a name starting with ‘cu.’:
This is the list of all serial ports. /dev/cu.usbserial-1410
is the serial port created by Apple’s driver.
If the output however looks like so, there is a problem:
Two entries have been created for the same board because two drivers for the CH340G chip are installed. One of the ports will work, the other one will cause an error when a connection is attempted. The solution is to uninstall all non-Apple drivers (see above).
Ch340 Driver Catalina Mac
Troubleshooting
The general approach for troubleshooting is:
- Uninstall the WCH driver
- Limit the upload speed
- Reboot
Specific problems
Resource busy: ‘/dev/cu.usbserial-1410’
If a resource busy error, occurs, the selected serial port is most likely blocked by a second driver. Uninstalling the WCH driver or other non-Apple drivers (see above) should fix it.
Timed out waiting for packet content*
Ch340 Driver Catalina Mac
If a Timed out waiting for packet content error occurs, the upload speed is likely too high. Limit the upload speed (see above) to fix the issue.
About the App
- App name: Wch USB serial driver for CH340/CH341
- App description: wch-ch34x-usb-serial-driver (App: CH341SER_MAC/ch34xInstall.pkg)
- App website: http://www.wch.cn/download/CH341SER_MAC_ZIP.html
Install the App
- Press
Command+Space
and type Terminal and press enter/return key. - Run in Terminal app:
ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)' 2> /dev/null
and press enter/return key. If you are prompted to enter your Mac's user password, enter it (when you type it, you wont see it on your screen/terminal.app but it would accept the input; this is to ensure no one can see your password on your screen while you type it. So just type password and press enter, even if you dont see it on your screen). Then wait for the command to finish. - Run:
brew install wch-ch34x-usb-serial-driver
Done! You can now use Wch USB serial driver for CH340/CH341.