meshtastic/docs/getting-started/serial-drivers/serial-drivers-esp32.mdx

52 lines
1.6 KiB
Plaintext
Raw Normal View History

---
2022-11-07 20:53:52 -08:00
id: esp32
title: ESP32 Serial Drivers
sidebar_label: ESP32 Drivers
sidebar_position: 1
---
2022-10-31 10:27:04 -07:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
## Install ESP32 USB to Serial Drivers
You may need to install a driver from Silicon Labs for the [CP210X USB to UART bridge](https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers)
Some newer boards may require the CH9102 (CH340/CH341) Driver.
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
2022-10-31 10:27:04 -07:00
<TabItem value="linux">
2022-10-31 10:27:04 -07:00
- [CP210X USB to UART bridge - Download](https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers)
- [CH9102 Driver - Linux Download](http://www.wch-ic.com/downloads/CH341SER_LINUX_ZIP.html)
</TabItem>
2022-10-31 10:27:04 -07:00
<TabItem value="macos">
2022-10-31 10:27:04 -07:00
- [CP210X USB to UART bridge - Download](https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers)
- [CH9102 Driver - MacOS Download](https://github.com/WCHSoftGroup/ch34xser_macos)
2022-10-31 10:27:04 -07:00
</TabItem>
2022-10-31 10:27:04 -07:00
<TabItem value="windows">
2022-10-31 10:27:04 -07:00
- [CP210X USB to UART bridge - Download](https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers)
- [CH9102 Driver - Windows Download](http://www.wch.cn/downloads/CH343SER_ZIP.html)
- [CH9102 Driver - Windows Download (Direct Download for Windows 7)](https://github.com/Xinyuan-LilyGO/CH9102_Driver)
2022-10-31 10:27:04 -07:00
</TabItem>
</Tabs>
:::important
Reboot your computer after you have installed the driver to complete the installation.
:::