Zephyr advanced blinky example.
west init -m https://github.com/morandg/zephyr-blinky-advanced.git blinky-advanced
cd blinky-advanced
west update
source zephyr/zephyr-env.sh
west build -b lpcxpresso55s28 blinky-advanced/
west flash
To port this application to other boards, add a device tree overlay with the following aliases
/ {
aliases{
button-on = &some_gpio_button;
blinky-led = &some_gpio_led;
};
};