meshtastic/docs/getting-started/flashing-firmware/nrf52/index.mdx

43 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-09-21 02:33:44 -07:00
---
id: flashing-nrf52-devices
title: Flash NRF52 Devices
sidebar_label: NRF52 Device
sidebar_position: 2
2022-09-21 02:33:44 -07:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2022-10-31 10:27:04 -07:00
## Recommended Flashing Method for NRF52 Devices
2022-10-31 21:26:19 -07:00
If you have RAK NRF based devices or a LilyGO T-Echo
2022-10-31 21:26:19 -07:00
1. The [drag and drop](/docs/getting-started/flashing-firmware/nrf52/drag-n-drop) firmware installation process is the easiest solution.
## Convert RAK4631-R to RAK4631
2022-10-31 21:26:19 -07:00
The RAK4631-R is just the same as the RAK4631 in terms of hardware, the only difference is the bootloader it is shipped with.
2022-09-21 02:33:44 -07:00
2022-10-31 21:26:19 -07:00
The RAK4631-R is shipped with the RUI3 bootloader, the RAK4631 with the Arduino bootloader.
Running Meshtastic on RAK WisBlock NRF52-based boards relies on the Arduino bootloader.
The process of converting the bootloader only needs to be performed once.
2022-09-21 02:33:44 -07:00
This conversion requires the use of either a [DAPLink](https://daplink.io/) or [J-Link](https://www.segger.com/products/debug-probes/j-link/). The most reasonably priced and avaliable is the [RAKDAP1](https://store.rakwireless.com/products/daplink-tool).
1. Install [Python](https://www.python.org/downloads/)
2. Install [pyOCD](https://pyocd.io/)
2022-10-31 21:26:19 -07:00
```shell
pip3 install pyocd
```
2022-09-21 02:33:44 -07:00
3. Download the required bootloader: [WisCore_RAK4631_Board_Bootloader.hex](https://github.com/RAKWireless/WisBlock/releases/download/0.4.2/WisCore_RAK4631_Board_Bootloader.hex)
4. Connect the RAKDAP as follows:
[<img src="/img/rak4631-rakdap1.png" style={{zoom:'25%'}} />](/img/rak4631-rakdap1.png)
5. Flash the bootloader
2022-10-31 21:26:19 -07:00
```shell
pyocd flash -t nrf52840 .\WisCore_RAK4631_Board_Bootloader.hex
```
6. Continue with the normal [flashing instructions](/docs/getting-started/flashing-firmware/nrf52/drag-n-drop)
2022-09-21 02:33:44 -07:00
Alternate methods of flashing are outlined [here](https://github.com/RAKWireless/WisBlock/tree/master/bootloader/RAK4630).