mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #16426 from fjmolinas/pr_small_test_fixes
tests: small fixes
This commit is contained in:
commit
38062c414c
@ -18,7 +18,6 @@ config BOARD_NUCLEO_F303K8
|
||||
select HAS_PERIPH_ADC
|
||||
select HAS_PERIPH_DMA
|
||||
select HAS_PERIPH_PWM
|
||||
select HAS_PERIPH_RTC
|
||||
select HAS_PERIPH_SPI
|
||||
select HAS_PERIPH_TIMER
|
||||
select HAS_PERIPH_UART
|
||||
|
@ -5,7 +5,6 @@ CPU_MODEL = stm32f303k8
|
||||
FEATURES_PROVIDED += periph_adc
|
||||
FEATURES_PROVIDED += periph_dma
|
||||
FEATURES_PROVIDED += periph_pwm
|
||||
FEATURES_PROVIDED += periph_rtc
|
||||
FEATURES_PROVIDED += periph_spi
|
||||
FEATURES_PROVIDED += periph_timer
|
||||
FEATURES_PROVIDED += periph_uart
|
||||
|
@ -26,6 +26,7 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
nucleo-f302r8 \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-g071rb \
|
||||
nucleo-l011k4 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
|
@ -2,7 +2,7 @@ include ../Makefile.tests_common
|
||||
|
||||
# nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack
|
||||
# size for every thread
|
||||
ifneq (,$(filter nucleo-f303k8,$(BOARD)))
|
||||
ifneq (,$(filter nucleo-f303k8 nucleo-f334r8,$(BOARD)))
|
||||
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user