2021-10-28 16:48:00 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
USEPKG += fff
|
|
|
|
# If periph_i2c is pulled in the real implementation conflicts with the mock
|
|
|
|
FEATURES_BLACKLIST += periph_i2c
|
2022-03-28 14:54:59 +02:00
|
|
|
|
2021-10-28 16:48:00 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2022-06-15 09:58:46 +02:00
|
|
|
|
2022-07-22 06:24:20 +02:00
|
|
|
ifneq ($(MCU),esp32)
|
2022-06-15 09:58:46 +02:00
|
|
|
# only two threads used
|
|
|
|
CFLAGS += -DMAXTHREADS=2
|
|
|
|
else
|
2022-07-22 06:24:20 +02:00
|
|
|
# ESP32x SoCs uses an extra thread for esp_timer
|
2022-06-15 09:58:46 +02:00
|
|
|
CFLAGS += -DMAXTHREADS=3
|
|
|
|
endif
|