1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00
RIOT/tests/pkg/fff/Makefile
2023-05-06 07:55:01 +02:00

15 lines
357 B
Makefile

include ../Makefile.pkg_common
USEPKG += fff
# If periph_i2c is pulled in the real implementation conflicts with the mock
FEATURES_BLACKLIST += periph_i2c
include $(RIOTBASE)/Makefile.include
ifneq ($(MCU),esp32)
# only two threads used
CFLAGS += -DMAXTHREADS=2
else
# ESP32x SoCs uses an extra thread for esp_timer
CFLAGS += -DMAXTHREADS=3
endif