mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-13 17:14:25 -08:00
80 lines
2 KiB
Plaintext
80 lines
2 KiB
Plaintext
---
|
|
id: nrf52
|
|
title: nRF52 Serial Drivers
|
|
sidebar_label: nRF52 Drivers
|
|
sidebar_position: 2
|
|
---
|
|
|
|
import Tabs from "@theme/Tabs";
|
|
import TabItem from "@theme/TabItem";
|
|
import Link from "@docusaurus/Link";
|
|
|
|
## Install nRF52 USB to Serial Drivers
|
|
|
|
<Tabs
|
|
groupId="operating-system"
|
|
defaultValue="windows"
|
|
values={[
|
|
{label: 'Linux', value: 'linux'},
|
|
{label: 'macOS', value: 'macos'},
|
|
{label: 'Windows', value: 'windows'},
|
|
]}>
|
|
|
|
<TabItem value="linux">
|
|
|
|
- [CH9102 Driver - Linux Download](http://www.wch-ic.com/downloads/CH341SER_LINUX_ZIP.html)
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="macos">
|
|
|
|
- [CH9102 Driver - macOS Download](https://github.com/WCHSoftGroup/ch34xser_macos)
|
|
|
|
:::caution
|
|
|
|
With the latest versions of MacOS, the USB Serial driver is built-in. Do _NOT_ download the USB device drivers unless required. If you downloaded/installed any already, please remove them.
|
|
|
|
:::
|
|
|
|
### Remove the CH34x USB Driver (macOS)
|
|
|
|
If you have already downloaded/installed the macOS WCH-IC CH340/CH341
|
|
("CH341SER_MAC") drivers via the CH34x_Install_V1.5.pkg, you will have to
|
|
Uninstall the kernel extension:
|
|
|
|
1. Unplug your device
|
|
2. Open the Terminal and run:
|
|
3. `sudo rm -rf /Library/Extensions/usbserial.kext`
|
|
4. Reboot
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="windows">
|
|
|
|
- [CH9102 Driver - Windows Download](http://www.wch-ic.com/downloads/CH341SER_EXE.html)
|
|
|
|
</TabItem>
|
|
|
|
</Tabs>
|
|
|
|
:::important
|
|
|
|
After installing the driver, make sure to reboot your computer to finish the installation process.
|
|
|
|
You can also [test your serial driver installation](/docs/getting-started/serial-drivers/test-serial-driver-installation) at this step if required.
|
|
|
|
:::
|
|
|
|
### Flash Firmware
|
|
|
|
After installing the serial drivers, you can now flash the Meshtastic firmware onto your device. To proceed, select the appropriate device type for your device.
|
|
|
|
<div className="indexCtasBody">
|
|
<Link
|
|
className={"button button--outline button--lg cta--button"}
|
|
to={"/docs/getting-started/flashing-firmware/nrf52/"}
|
|
>
|
|
Flash nRF52 Firmware
|
|
</Link>
|
|
</div>
|