Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 636 Bytes

File metadata and controls

25 lines (20 loc) · 636 Bytes

Agent Instructions

Style

  • Follow the repo .clang-format when making changes.

Build / Verify

  • Prefer CMake for testing/verification.
  • Always build both boards during verification:
    • feather_nrf52832
    • feather_nrf52840_express

CMake (preferred)

cmake -S . -B cmake-build-feather_nrf52832 -DBOARD=feather_nrf52832
cmake --build cmake-build-feather_nrf52832

cmake -S . -B cmake-build-feather_nrf52840_express -DBOARD=feather_nrf52840_express
cmake --build cmake-build-feather_nrf52840_express

Make (alternate)

make BOARD=feather_nrf52832 all
make BOARD=feather_nrf52840_express all