Made HOWTO a tiny bit better.

This commit is contained in:
Marcel
2025-03-04 16:51:10 +01:00
parent 0c425e8a04
commit a70e20cd50
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
## Required knowledge
This document assumes some basic knowledge of programming. Like using code editors to edit source code and using basic commands like `make`. Plus some basic Linux knowledge.
This document assumes some basic knowledge of programming. Like using code editors to edit source code and using basic commands like `make`. Plus some basic Linux knowledge. But you don't have to be an expert.
## Dependencies
@@ -93,7 +93,7 @@ release-waveshare-esp32-s3-pico:
### Boards.h
The file `Board.h` is the most important file to edit. This is the place where the supported boards are defined. For our new board should, a new section has to be added. This section defines the pinout of the SPI port and if it has certain peripherals such as a screen or BLE.
The file `Board.h` is the most important file to edit. This is the place where the supported boards are defined. For our new board, a new section has to be added. This section defines the pinout of the SPI port and if it has certain peripherals such as a screen or BLE.
First, the new board has to be defined at the beginning of the file. Search for the line `#define MODEL_FF 0xFF // Homebrew board, max 14dBm output power` and add our definition below that line. Like so: