mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
299 B
Makefile
16 lines
299 B
Makefile
BOARD ?= arduino-zero
|
|
|
|
include ../Makefile.sys_common
|
|
|
|
LED_PIN ?= 3
|
|
|
|
USEMODULE += arduino
|
|
|
|
# Features used by Arduino analogRead/analogWrite functions are required
|
|
FEATURES_REQUIRED += arduino_pwm
|
|
FEATURES_REQUIRED += periph_adc
|
|
|
|
CFLAGS += -DLED_PIN=$(LED_PIN)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|