1
0
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:
Kaspar Schleiser 2021-05-04 10:02:09 +02:00 committed by GitHub
commit 38062c414c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -26,6 +26,7 @@ BOARD_INSUFFICIENT_MEMORY := \
nucleo-f302r8 \
nucleo-f303k8 \
nucleo-f334r8 \
nucleo-g071rb \
nucleo-l011k4 \
nucleo-l031k6 \
nucleo-l053r8 \

View File

@ -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