From 113f546a21c44aab81fd3a4f7ca6e45fdb3d3492 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 4 Mar 2025 15:36:46 +0100 Subject: [PATCH] Made HOWTO a tiny bit better. --- ...firmware-and-compile-it_MeesElectronics.md | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Documentation/HOWTO-change-firmware-and-compile-it_MeesElectronics.md b/Documentation/HOWTO-change-firmware-and-compile-it_MeesElectronics.md index 4f8fd59..cceeaa7 100644 --- a/Documentation/HOWTO-change-firmware-and-compile-it_MeesElectronics.md +++ b/Documentation/HOWTO-change-firmware-and-compile-it_MeesElectronics.md @@ -1,5 +1,9 @@ # How to compile the rnode firmware yourself +## + +This document + ## Dependencies Make sure *git*, *make*, *python* and *pip* are instaled. Most likely these are already availble on your system. Otherwise do: @@ -13,6 +17,12 @@ Install Reticulum: $ pip install rns --break-system-packages +Add rns software to path: + + $ nano ~/.bashrc + +Add `export PATH=~/.local/bin:$PATH` to the end of the file. Exit with `CTRL-x` and type `y` to save the changes. + Download arduino-cli: $ cd @@ -24,7 +34,7 @@ Add arduino-cli to path by editing ~/.bashrc Add `export PATH=~/bin:$PATH` to end of file. Exit with `CTRL-x` and type `y` to save the changes. -Now reload the shell so the changes will take effect: `exec $SHELL`. You can also logout and login again. +Now reload the shell so the changes to the path will take effect: `exec $SHELL`. You can also logout and login again. ## Clone git repo @@ -37,15 +47,7 @@ Install the required BSP and libraries for the ESP32 system. $ cd RNode_Firmware_CE/ $ make prep-esp32 -This command stalled. I stopped the command by hiting CTRL-C and restarted it. - -Add rns software to path: - - $ nano ~/.bashrc - -Add `export PATH=~/.local/bin:$PATH` to the end of the file. Exit with `CTRL-x` and type `y` to save the changes. - -Now reload the shell so the changes will take effect: `exec $SHELL`. You can also logout and login again. +Sometimes this command stalls. If this happens, stop the command by hiting `CTRL-c` and restarted it. ## Test