Created
August 14, 2025 12:12
-
-
Save mbaldessari/baca064c2c00c52578fa53a6cc9fd7fb to your computer and use it in GitHub Desktop.
Rebuild firmware for WHY2025 Badge on Fedora 42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Building the badge OS on Fedora 42 | |
## Espressif Tools | |
```sh | |
mkdir ~/Devel/esp; cd ~/Devel/esp | |
git clone -b v5.5 --recursive https://github.com/espressif/esp-idf.git | |
cd esp-idf | |
./install.sh esp32p4 | |
``` | |
## Badge repo | |
Make sure your user is part of the `dialout` group and that you plug the USB-C on the | |
right-hand side | |
```sh | |
cd ~/Devel/esp | |
source ~/Devel/esp/esp-idf/export.sh | |
git clone https://gitlab.com/why2025/team-badge/firmware | |
cd firmware | |
idf.py build flash monitor | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment