1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 02:23:49 +01:00
AnnsAnn 55fa531e02 examples: restructure to use subfolders based on README structure
examples: Fix incorrect category heading

examples: shorten coap folder name

static-tests/examples: check subfolders for entries

ci/test_native: Adjust to new examples structure

examples: adjust makefiles to new structure

ci/tests: Fix symlinks to point towards proper examples
2025-02-13 11:54:09 +01:00

19 lines
422 B
Makefile

APPLICATION = pio_blink
BOARD ?= rpi-pico
RIOTBASE ?= $(CURDIR)/../../..
# The board rpi-pico-w has no LED pin so you have to select the pin by hand with:
# PIO_BLINK_PIN=GPIO_PIN\(x,y\) make ...
PIO_BLINK_PIN ?= GPIO_UNDEF
CFLAGS += -DPIO_BLINK_PIN=$(PIO_BLINK_PIN)
FEATURES_REQUIRED += periph_pio
DEVELHELP ?= 1
QUIET ?= 1
include $(RIOTBASE)/Makefile.include
DIRS += $(CPU)_pio_blink
USEMODULE += $(CPU)_pio_blink