mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 15:44:18 -08:00
c06af5a0b1
* getting started updates * updates to about page * updated gettings started and supported hardware page * archived wrong device Co-authored-by: sigmahour <> Co-authored-by: Andre K <andrekir@pm.me> Co-authored-by: Sacha Weatherstone <sachaw100@hotmail.com>
67 lines
1.6 KiB
Plaintext
67 lines
1.6 KiB
Plaintext
---
|
|
id: installing-nrf52-serial-drivers
|
|
title: NRF52 Serial Drivers
|
|
sidebar_label: NRF52 Drivers
|
|
sidebar_position: 2
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
## Install NRF52 USB to Serial Drivers
|
|
|
|
<Tabs
|
|
groupId="operating-system"
|
|
defaultValue="linux"
|
|
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)
|
|
|
|
:::important
|
|
Reboot your computer after you have installed the driver to complete the installation.
|
|
:::
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="macos">
|
|
|
|
- [CH9102 Driver - macOS Download](https://github.com/WCHSoftGroup/ch34xser_macos)
|
|
|
|
:::important
|
|
Reboot your computer after you have installed the driver to complete the installation.
|
|
:::
|
|
|
|
:::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)
|
|
|
|
:::important
|
|
Reboot your computer after you have installed the driver to complete the installation.
|
|
:::
|
|
|
|
</TabItem>
|
|
|
|
</Tabs> |