explicit path to custom board
Some checks failed
Build / Build (push) Failing after 5m23s
Build / build (ubuntu-22.04) (push) Failing after 1m36s
Documentation / build (push) Failing after -1m3s

This commit is contained in:
2025-05-31 00:57:01 -06:00
parent 494d04f1f2
commit 6cd0752294
2 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,8 @@ nrfutil install device
```bash
west build -p auto -b nrf52dk/nrf52832 firmware/blinky
west build -p auto -b nrf52dk/nrf52832 firmware/app
west build -p auto -b mellifera_rev1 firmware/blinky -- -DBOARD_ROOT=$(pwd)/firmware
west build -p auto -b mellifera_rev1 firmware/app -- -DBOARD_ROOT=$(pwd)/firmware
west flash
```

View File

@ -9,7 +9,7 @@
#include <zephyr/drivers/gpio.h>
/* 1000 msec = 1 sec */
#define SLEEP_TIME_MS 100
#define SLEEP_TIME_MS 1000
/* The devicetree node identifier for the "led0" alias. */
#define LED0_NODE DT_ALIAS(led0)