building

Meshtastic uses PlatformIO, a development environment that enables easy multi-platform development and centralized tooling.

Setup the Build Environment

  1. Install Git
  2. Install PlatformIO
  3. Clone the Meshtastic Firmware repository shell git clone https://github.com/meshtastic/firmware.git
  4. Update the repository's submodules shell cd firmware && git submodule update --init :::info If you want to build the RP2040 targets and get a 'Filename too long' error on Windows, please refer to the Platformio documentation for this toolchain :::

Update the Build Environment

  1. Change to firmware folder shell cd firmware
  2. Gather the latest changes to the Meshtastic Firmware repository and submodules shell git pull --recurse-submodules

Build

  1. Open the newly cloned folder in Visual Studio Code. If you do this for the first time, this can take quite some while as PlatformIO will download all the necessary tooling and libraries. Also if platformio is not installed, VSCode will ask you to install it, probably requiring a restart of the program.
  2. To select the device you wish to build, open your command palette:
  3. Windows: Ctrl + Shift + P
  4. Mac: command + Shift + P
  5. Enter: PlatformIO: Pick Project Environment and select your target.
  6. To build the firmware, simply run PlatformIO: Build from your command palette.
  7. Finally, flash the firmware to your device by running PlatformIO: Upload

Adding Custom Hardware

The build system is modular. Adding a new board variant for an already supported architecture is straightforward.

Build with Custom Hardware

  1. Go to the variants folder in the firmware source code and make a new directory for your hardware, let's call it m5stack_atom, and copy an existing configuration you want to modify: shell cd variants; mkdir m5stack_atom cp heltec_v1/* m5stack_atom cd m5stack_atom
  2. Modify the platformio.ini in this subdirectory from the canonical define of the hardware variant (HELTEC_V1 in this case) to PRIVATE_HW and make the -I on the build_flags point to the newly created dir. shell [env:m5stack-atom] extends = esp32_base board = m5stack-atom monitor_filters = esp32_exception_decoder build_flags = ${esp32_base.build_flags} -D PRIVATE_HW -I variants/m5stack_atom lib_deps = ${esp32_base.lib_deps}
  3. Edit the variant.h file in this subdirectory to reflect the defines and configurations for your board. The example is very well commented.
  4. Build, run, and debug until you are satisfied with the result.

Hardware Model Acceptance Policy

Due to limited availability and ongoing support, new hardware model numbers will only be added for Meshtastic Backers and Partners. The Meshtastic team reserves the right to make exceptions to this policy where needed. If you wish to have your hardware officially supported please contact Meshtastic Solutions.

Alternative for Community Contributors

Community Supported hardware is still welcomed, and community contributors can still add DIY hardware, however, please note: