diff --git a/boards/weact-g030f6/Makefile b/boards/weact-g030f6/Makefile new file mode 100644 index 0000000000..f8fcbb53a0 --- /dev/null +++ b/boards/weact-g030f6/Makefile @@ -0,0 +1,3 @@ +MODULE = board + +include $(RIOTBASE)/Makefile.base diff --git a/boards/weact-g030f6/Makefile.dep b/boards/weact-g030f6/Makefile.dep new file mode 100644 index 0000000000..5472bf8b8d --- /dev/null +++ b/boards/weact-g030f6/Makefile.dep @@ -0,0 +1,3 @@ +ifneq (,$(filter saul_default,$(USEMODULE))) + USEMODULE += saul_gpio +endif diff --git a/boards/weact-g030f6/Makefile.features b/boards/weact-g030f6/Makefile.features new file mode 100644 index 0000000000..6b6a3295ae --- /dev/null +++ b/boards/weact-g030f6/Makefile.features @@ -0,0 +1,8 @@ +CPU = stm32 +CPU_MODEL = stm32g030f6 + +# Put defined MCU peripherals here (in alphabetical order) +FEATURES_PROVIDED += periph_gpio +FEATURES_PROVIDED += periph_timer +FEATURES_PROVIDED += periph_uart +FEATURES_PROVIDED += periph_rtc diff --git a/boards/weact-g030f6/Makefile.include b/boards/weact-g030f6/Makefile.include new file mode 100644 index 0000000000..15a610973e --- /dev/null +++ b/boards/weact-g030f6/Makefile.include @@ -0,0 +1,18 @@ +# we use shared STM32 configuration snippets +INCLUDES += -I$(RIOTBASE)/boards/common/stm32/include + +# define the default port depending on the host OS +PORT_LINUX ?= /dev/ttyACM0 +PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*))) + +# setup serial terminal +include $(RIOTMAKE)/tools/serial.inc.mk + +PROGRAMMER ?= openocd +OPENOCD_DEBUG_ADAPTER ?= stlink + +# openocd programmer is supported +PROGRAMMERS_SUPPORTED += openocd + +# this board uses openocd +include $(RIOTMAKE)/tools/openocd.inc.mk diff --git a/boards/weact-g030f6/dist/openocd.cfg b/boards/weact-g030f6/dist/openocd.cfg new file mode 100644 index 0000000000..2ab803fdf3 --- /dev/null +++ b/boards/weact-g030f6/dist/openocd.cfg @@ -0,0 +1,3 @@ +source [find target/stm32g0x.cfg] + +$_TARGETNAME configure -rtos auto diff --git a/boards/weact-g030f6/doc.txt b/boards/weact-g030f6/doc.txt new file mode 100644 index 0000000000..5eb41f9126 --- /dev/null +++ b/boards/weact-g030f6/doc.txt @@ -0,0 +1,37 @@ +/** +@defgroup boards_weact-g030f6 WeAct-G030F6 board +@ingroup boards +@brief Support for the WeAct-G030F6 board + +## Overview + +WeAct-G030F6 is a cheap little board based on the STM32G030F6P6 MCU. +It does not come with a programmer or USB connection, so an external +programmer (ST-Link, DAP-Link, etc) has to be used. + +It is available on sites like AliExpress for less than 2€. + +## Hardware + +![WeAct-G030F6P4](https://github.com/RIOT-OS/RIOT/assets/1301112/d42a25e0-d331-4cae-ba48-1edfa01f35f9) + +### MCU +| MCU | STM32G030F6P6 | +|:---------------- |:--------------------- | +| Family | ARM Cortex-M0+ | +| Vendor | ST Microelectronics | +| RAM | 8KiB | +| Flash | 32KiB | +| Frequency | up to 64MHz | +| FPU | no | +| Timers | 8 (2x watchdog, 1 SysTick, 5x 16-bit) | +| ADCs | 1x 12-bit | +| UARTs | 2 | +| SPIs | 2 | +| I2Cs | 2 | +| RTC | 1 | +| Vcc | 2.0V - 3.6V | +| Datasheet | [Datasheet](https://www.st.com/resource/en/datasheet/stm32g030f6.pdf) | +| Reference Manual | [Reference Manual](https://www.st.com/resource/en/reference_manual/rm0454-stm32g0x0-advanced-armbased-32bit-mcus-stmicroelectronics.pdf) | + +*/ diff --git a/boards/weact-g030f6/include/board.h b/boards/weact-g030f6/include/board.h new file mode 100644 index 0000000000..c798d5f5a1 --- /dev/null +++ b/boards/weact-g030f6/include/board.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2024 ML!PA Consulting GmbH + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup boards_weact-g030f6 + * @{ + * + * @file + * @brief Board specific definitions for WeAct-G030F6 + * + * @author Benjamin Valentin + */ + +#ifndef BOARD_H +#define BOARD_H + +#include "cpu.h" +#include "periph_conf.h" +#include "periph_cpu.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#define LED0_PIN_NUM 4 +#define LED0_PORT_NUM PORT_A + +#define BTN0_PIN GPIO_PIN(PORT_A, 14) +#define BTN0_MODE GPIO_IN + +#ifdef __cplusplus +} +#endif + +#include "stm32_leds.h" + +#endif /* BOARD_H */ +/** @} */ diff --git a/boards/weact-g030f6/include/gpio_params.h b/boards/weact-g030f6/include/gpio_params.h new file mode 100644 index 0000000000..8ca29cca67 --- /dev/null +++ b/boards/weact-g030f6/include/gpio_params.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2024 ML!PA Consulting GmbH + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup boards_weact-g030f6 + * @{ + * + * @file + * @brief Board specific configuration of direct mapped GPIOs + * + * @author Benjamin Valentin + */ + +#ifndef GPIO_PARAMS_H +#define GPIO_PARAMS_H + +#include "board.h" +#include "saul/periph.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief GPIO pin configuration + */ +static const saul_gpio_params_t saul_gpio_params[] = +{ + { + .name = "LED(blue)", + .pin = LED0_PIN, + .mode = GPIO_OUT, + .flags= SAUL_GPIO_INVERTED | SAUL_GPIO_INIT_CLEAR, + }, + { + .name = "Button(A14)", + .pin = BTN0_PIN, + .mode = BTN0_MODE, + }, +}; + +#ifdef __cplusplus +} +#endif + +#endif /* GPIO_PARAMS_H */ +/** @} */ diff --git a/boards/weact-g030f6/include/periph_conf.h b/boards/weact-g030f6/include/periph_conf.h new file mode 100644 index 0000000000..e3077ba77c --- /dev/null +++ b/boards/weact-g030f6/include/periph_conf.h @@ -0,0 +1,79 @@ +/* + * Copyright (C) 2024 ML!PA Consulting GmbH + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup boards_weact-g030f6 + * @{ + * + * @file + * @brief Configuration of CPU peripherals for WeAct-G030F6 + * + * @author Benjamin Valentin + */ + +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H + +#include + +#include "cpu.h" +#include "periph_cpu.h" +#include "clk_conf.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @name Timer configuration + * @{ + */ +static const timer_conf_t timer_config[] = { + { + .dev = TIM1, + .max = 0x0000ffff, + .rcc_mask = RCC_APBENR2_TIM1EN, + .bus = APB12, + .irqn = TIM1_CC_IRQn + } +}; + +#define TIMER_0_ISR isr_tim1_cc +#define TIMER_0_MAX_VALUE 0xffff + +#define TIMER_NUMOF ARRAY_SIZE(timer_config) +/** @} */ + +/** + * @name UART configuration + * @{ + */ +static const uart_conf_t uart_config[] = { + { + .dev = USART2, + .rcc_mask = RCC_APBENR1_USART2EN, + .rx_pin = GPIO_PIN(PORT_A, 3), + .tx_pin = GPIO_PIN(PORT_A, 2), + .rx_af = GPIO_AF1, + .tx_af = GPIO_AF1, + .bus = APB1, + .irqn = USART2_IRQn, + }, +}; + +#define UART_0_ISR (isr_usart2) + +#define UART_NUMOF ARRAY_SIZE(uart_config) +/** @} */ + +#ifdef __cplusplus +} +#endif + +#endif /* PERIPH_CONF_H */ +/** @} */ diff --git a/examples/asymcute_mqttsn/Makefile.ci b/examples/asymcute_mqttsn/Makefile.ci index bc11819a7c..32a4b17d1e 100644 --- a/examples/asymcute_mqttsn/Makefile.ci +++ b/examples/asymcute_mqttsn/Makefile.ci @@ -48,6 +48,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/examples/benchmark_udp/Makefile.ci b/examples/benchmark_udp/Makefile.ci index d7b6950877..68f619b917 100644 --- a/examples/benchmark_udp/Makefile.ci +++ b/examples/benchmark_udp/Makefile.ci @@ -37,6 +37,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/examples/cord_ep/Makefile.ci b/examples/cord_ep/Makefile.ci index e5c68b46b9..e5d03bc296 100644 --- a/examples/cord_ep/Makefile.ci +++ b/examples/cord_ep/Makefile.ci @@ -40,6 +40,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/examples/cord_epsim/Makefile.ci b/examples/cord_epsim/Makefile.ci index 84627c6da4..b135ba2e43 100644 --- a/examples/cord_epsim/Makefile.ci +++ b/examples/cord_epsim/Makefile.ci @@ -32,5 +32,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/cord_lc/Makefile.ci b/examples/cord_lc/Makefile.ci index ec80ea4480..c66a88c7ab 100644 --- a/examples/cord_lc/Makefile.ci +++ b/examples/cord_lc/Makefile.ci @@ -37,5 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/dtls-echo/Makefile.ci b/examples/dtls-echo/Makefile.ci index 0d8d734c7b..9484f410ca 100644 --- a/examples/dtls-echo/Makefile.ci +++ b/examples/dtls-echo/Makefile.ci @@ -55,6 +55,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/examples/dtls-sock/Makefile.ci b/examples/dtls-sock/Makefile.ci index 6110d18ded..5ef78e8405 100644 --- a/examples/dtls-sock/Makefile.ci +++ b/examples/dtls-sock/Makefile.ci @@ -58,6 +58,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/examples/dtls-wolfssl/Makefile.ci b/examples/dtls-wolfssl/Makefile.ci index bb6a010541..4783cb20a8 100644 --- a/examples/dtls-wolfssl/Makefile.ci +++ b/examples/dtls-wolfssl/Makefile.ci @@ -52,5 +52,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/examples/emcute_mqttsn/Makefile.ci b/examples/emcute_mqttsn/Makefile.ci index 1b984863cf..5ee8cd4cfa 100644 --- a/examples/emcute_mqttsn/Makefile.ci +++ b/examples/emcute_mqttsn/Makefile.ci @@ -40,6 +40,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/examples/gcoap/Makefile.ci b/examples/gcoap/Makefile.ci index fa31b2b6a3..30cafac089 100644 --- a/examples/gcoap/Makefile.ci +++ b/examples/gcoap/Makefile.ci @@ -35,5 +35,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/gcoap_block_server/Makefile.ci b/examples/gcoap_block_server/Makefile.ci index e13f71fb2a..dd2697aa44 100644 --- a/examples/gcoap_block_server/Makefile.ci +++ b/examples/gcoap_block_server/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/gcoap_dtls/Makefile.ci b/examples/gcoap_dtls/Makefile.ci index eb2278c907..f0862b2ffc 100644 --- a/examples/gcoap_dtls/Makefile.ci +++ b/examples/gcoap_dtls/Makefile.ci @@ -59,6 +59,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/examples/gcoap_fileserver/Makefile.ci b/examples/gcoap_fileserver/Makefile.ci index 7eb163419d..dac62cb2cf 100644 --- a/examples/gcoap_fileserver/Makefile.ci +++ b/examples/gcoap_fileserver/Makefile.ci @@ -39,5 +39,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/gnrc_border_router/Makefile.ci b/examples/gnrc_border_router/Makefile.ci index 2cddd9122c..1e3e115940 100644 --- a/examples/gnrc_border_router/Makefile.ci +++ b/examples/gnrc_border_router/Makefile.ci @@ -67,6 +67,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ weio \ yunjia-nrf51822 \ z1 \ diff --git a/examples/gnrc_lorawan/Makefile.ci b/examples/gnrc_lorawan/Makefile.ci index 1b095d9ed2..7bbdb6c6c1 100644 --- a/examples/gnrc_lorawan/Makefile.ci +++ b/examples/gnrc_lorawan/Makefile.ci @@ -18,5 +18,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32f0discovery \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/examples/gnrc_networking/Makefile.ci b/examples/gnrc_networking/Makefile.ci index ae39d8c9a6..65e1c1396d 100644 --- a/examples/gnrc_networking/Makefile.ci +++ b/examples/gnrc_networking/Makefile.ci @@ -41,6 +41,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/examples/gnrc_networking_subnets/Makefile.ci b/examples/gnrc_networking_subnets/Makefile.ci index 45ae6d2e25..20d1adb16f 100644 --- a/examples/gnrc_networking_subnets/Makefile.ci +++ b/examples/gnrc_networking_subnets/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/javascript/Makefile.ci b/examples/javascript/Makefile.ci index 9ab137cef9..064f53dcca 100644 --- a/examples/javascript/Makefile.ci +++ b/examples/javascript/Makefile.ci @@ -59,5 +59,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/examples/lua_REPL/Makefile.ci b/examples/lua_REPL/Makefile.ci index 811a5ad9d9..1bccc4ef64 100644 --- a/examples/lua_REPL/Makefile.ci +++ b/examples/lua_REPL/Makefile.ci @@ -101,6 +101,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ wemos-zero \ yarm \ yunjia-nrf51822 \ diff --git a/examples/lua_basic/Makefile.ci b/examples/lua_basic/Makefile.ci index 3c52addf18..ff0a6e69cd 100644 --- a/examples/lua_basic/Makefile.ci +++ b/examples/lua_basic/Makefile.ci @@ -45,4 +45,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/examples/lwm2m/Makefile.ci b/examples/lwm2m/Makefile.ci index 47eb840321..c116a7e4f4 100644 --- a/examples/lwm2m/Makefile.ci +++ b/examples/lwm2m/Makefile.ci @@ -43,5 +43,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/examples/micropython/Makefile.ci b/examples/micropython/Makefile.ci index 5c78ea7d12..836d6739ef 100644 --- a/examples/micropython/Makefile.ci +++ b/examples/micropython/Makefile.ci @@ -35,4 +35,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/examples/nanocoap_server/Makefile.ci b/examples/nanocoap_server/Makefile.ci index 6fcb34c595..b43b342376 100644 --- a/examples/nanocoap_server/Makefile.ci +++ b/examples/nanocoap_server/Makefile.ci @@ -29,5 +29,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/paho-mqtt/Makefile.ci b/examples/paho-mqtt/Makefile.ci index 3d62d913a9..ab85373966 100644 --- a/examples/paho-mqtt/Makefile.ci +++ b/examples/paho-mqtt/Makefile.ci @@ -54,6 +54,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/examples/posix_select/Makefile.ci b/examples/posix_select/Makefile.ci index ae6971b10e..fe99b23d66 100644 --- a/examples/posix_select/Makefile.ci +++ b/examples/posix_select/Makefile.ci @@ -31,5 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/posix_sockets/Makefile.ci b/examples/posix_sockets/Makefile.ci index a8fce0e27f..5ac78c7a17 100644 --- a/examples/posix_sockets/Makefile.ci +++ b/examples/posix_sockets/Makefile.ci @@ -40,6 +40,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ # diff --git a/examples/psa_crypto/Makefile.ci b/examples/psa_crypto/Makefile.ci index 4b0abb9a45..9000c4d214 100644 --- a/examples/psa_crypto/Makefile.ci +++ b/examples/psa_crypto/Makefile.ci @@ -26,4 +26,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/examples/rust-gcoap/Makefile.ci b/examples/rust-gcoap/Makefile.ci index 2f6ff8556e..229e3efd0f 100644 --- a/examples/rust-gcoap/Makefile.ci +++ b/examples/rust-gcoap/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/examples/sniffer/Makefile.ci b/examples/sniffer/Makefile.ci index e685ae4766..a0cc10bacb 100644 --- a/examples/sniffer/Makefile.ci +++ b/examples/sniffer/Makefile.ci @@ -23,4 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/examples/spectrum-scanner/Makefile.ci b/examples/spectrum-scanner/Makefile.ci index 77e8cf39f4..fcffee05fd 100644 --- a/examples/spectrum-scanner/Makefile.ci +++ b/examples/spectrum-scanner/Makefile.ci @@ -21,4 +21,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/examples/telnet_server/Makefile.ci b/examples/telnet_server/Makefile.ci index f948bfe2a3..f2aea054bb 100644 --- a/examples/telnet_server/Makefile.ci +++ b/examples/telnet_server/Makefile.ci @@ -33,5 +33,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/examples/wasm/Makefile.ci b/examples/wasm/Makefile.ci index cf9726eee7..84cd4f613a 100644 --- a/examples/wasm/Makefile.ci +++ b/examples/wasm/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/bench/xtimer/Makefile.ci b/tests/bench/xtimer/Makefile.ci index 0a3316148b..c998da0fad 100644 --- a/tests/bench/xtimer/Makefile.ci +++ b/tests/bench/xtimer/Makefile.ci @@ -11,4 +11,5 @@ BOARD_INSUFFICIENT_MEMORY := \ slstk3400a \ stk3200 \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/bench/ztimer/Makefile.ci b/tests/bench/ztimer/Makefile.ci index 0a3316148b..c998da0fad 100644 --- a/tests/bench/ztimer/Makefile.ci +++ b/tests/bench/ztimer/Makefile.ci @@ -11,4 +11,5 @@ BOARD_INSUFFICIENT_MEMORY := \ slstk3400a \ stk3200 \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/core/cond_order/Makefile.ci b/tests/core/cond_order/Makefile.ci index 7092fda88a..ec28f7921a 100644 --- a/tests/core/cond_order/Makefile.ci +++ b/tests/core/cond_order/Makefile.ci @@ -26,4 +26,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/core/mutex_order/Makefile.ci b/tests/core/mutex_order/Makefile.ci index 77e8cf39f4..fcffee05fd 100644 --- a/tests/core/mutex_order/Makefile.ci +++ b/tests/core/mutex_order/Makefile.ci @@ -21,4 +21,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/core/rmutex_cpp/Makefile.ci b/tests/core/rmutex_cpp/Makefile.ci index 77e8cf39f4..fcffee05fd 100644 --- a/tests/core/rmutex_cpp/Makefile.ci +++ b/tests/core/rmutex_cpp/Makefile.ci @@ -21,4 +21,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/core/thread_cooperation/Makefile.ci b/tests/core/thread_cooperation/Makefile.ci index 6adc9bc400..5bed47b547 100644 --- a/tests/core/thread_cooperation/Makefile.ci +++ b/tests/core/thread_cooperation/Makefile.ci @@ -19,4 +19,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/core/thread_float/Makefile.ci b/tests/core/thread_float/Makefile.ci index 54f67f94b5..53bfe5b5a6 100644 --- a/tests/core/thread_float/Makefile.ci +++ b/tests/core/thread_float/Makefile.ci @@ -26,6 +26,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32f0discovery \ + weact-g030f6 \ weio \ yunjia-nrf51822 \ # diff --git a/tests/core/thread_stack_alignment/Makefile.ci b/tests/core/thread_stack_alignment/Makefile.ci index 8ac56df13c..dc9fea5cbd 100644 --- a/tests/core/thread_stack_alignment/Makefile.ci +++ b/tests/core/thread_stack_alignment/Makefile.ci @@ -10,4 +10,5 @@ BOARD_INSUFFICIENT_MEMORY := \ nucleo-l011k4 \ samd10-xmini \ stm32f030f4-demo \ + weact-g030f6 \ # diff --git a/tests/drivers/xbee/Makefile.ci b/tests/drivers/xbee/Makefile.ci index 486b355ae3..621348d782 100644 --- a/tests/drivers/xbee/Makefile.ci +++ b/tests/drivers/xbee/Makefile.ci @@ -16,4 +16,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32f0discovery \ + weact-g030f6 \ # diff --git a/tests/net/emcute/Makefile.ci b/tests/net/emcute/Makefile.ci index 90a29f0c2f..224e8c69a8 100644 --- a/tests/net/emcute/Makefile.ci +++ b/tests/net/emcute/Makefile.ci @@ -61,6 +61,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gcoap_dns/Makefile.ci b/tests/net/gcoap_dns/Makefile.ci index 905beae795..59a516611e 100644 --- a/tests/net/gcoap_dns/Makefile.ci +++ b/tests/net/gcoap_dns/Makefile.ci @@ -51,6 +51,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gcoap_fileserver/Makefile.ci b/tests/net/gcoap_fileserver/Makefile.ci index 6fbb084e2b..413f24b96f 100644 --- a/tests/net/gcoap_fileserver/Makefile.ci +++ b/tests/net/gcoap_fileserver/Makefile.ci @@ -49,6 +49,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_dhcpv6_client/Makefile.ci b/tests/net/gnrc_dhcpv6_client/Makefile.ci index f7360d257d..ccbb1ec43b 100644 --- a/tests/net/gnrc_dhcpv6_client/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_client/Makefile.ci @@ -39,5 +39,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci b/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci index dd1c8f3911..19205498b0 100644 --- a/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci @@ -68,6 +68,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci b/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci index a7a36a2b4e..06000277d0 100644 --- a/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci @@ -48,6 +48,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gnrc_dhcpv6_relay/Makefile.ci b/tests/net/gnrc_dhcpv6_relay/Makefile.ci index f7360d257d..ccbb1ec43b 100644 --- a/tests/net/gnrc_dhcpv6_relay/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_relay/Makefile.ci @@ -39,5 +39,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_ext/Makefile.ci b/tests/net/gnrc_ipv6_ext/Makefile.ci index 897a161fe0..050ceb03d7 100644 --- a/tests/net/gnrc_ipv6_ext/Makefile.ci +++ b/tests/net/gnrc_ipv6_ext/Makefile.ci @@ -40,5 +40,6 @@ BOARD_INSUFFICIENT_MEMORY := \ telosb \ thingy52 \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_ext_frag/Makefile.ci b/tests/net/gnrc_ipv6_ext_frag/Makefile.ci index 432f173ba7..dc725a7815 100644 --- a/tests/net/gnrc_ipv6_ext_frag/Makefile.ci +++ b/tests/net/gnrc_ipv6_ext_frag/Makefile.ci @@ -48,6 +48,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_ipv6_ext_opt/Makefile.ci b/tests/net/gnrc_ipv6_ext_opt/Makefile.ci index 8838d59e61..cae4b9c730 100644 --- a/tests/net/gnrc_ipv6_ext_opt/Makefile.ci +++ b/tests/net/gnrc_ipv6_ext_opt/Makefile.ci @@ -32,5 +32,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_fwd_w_sub/Makefile.ci b/tests/net/gnrc_ipv6_fwd_w_sub/Makefile.ci index a52553f22e..1de26cdae0 100644 --- a/tests/net/gnrc_ipv6_fwd_w_sub/Makefile.ci +++ b/tests/net/gnrc_ipv6_fwd_w_sub/Makefile.ci @@ -27,5 +27,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_nib/Makefile.ci b/tests/net/gnrc_ipv6_nib/Makefile.ci index 4a04f9f316..469adeb62d 100644 --- a/tests/net/gnrc_ipv6_nib/Makefile.ci +++ b/tests/net/gnrc_ipv6_nib/Makefile.ci @@ -22,5 +22,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_nib_6ln/Makefile.ci b/tests/net/gnrc_ipv6_nib_6ln/Makefile.ci index e4bb1a84ba..b65548697e 100644 --- a/tests/net/gnrc_ipv6_nib_6ln/Makefile.ci +++ b/tests/net/gnrc_ipv6_nib_6ln/Makefile.ci @@ -29,5 +29,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_ipv6_nib_dns/Makefile.ci b/tests/net/gnrc_ipv6_nib_dns/Makefile.ci index 4800846098..6b7b900c44 100644 --- a/tests/net/gnrc_ipv6_nib_dns/Makefile.ci +++ b/tests/net/gnrc_ipv6_nib_dns/Makefile.ci @@ -31,5 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_mac_timeout/Makefile.ci b/tests/net/gnrc_mac_timeout/Makefile.ci index e685ae4766..a0cc10bacb 100644 --- a/tests/net/gnrc_mac_timeout/Makefile.ci +++ b/tests/net/gnrc_mac_timeout/Makefile.ci @@ -23,4 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/gnrc_ndp/Makefile.ci b/tests/net/gnrc_ndp/Makefile.ci index 3835305d1d..67b6ed3593 100644 --- a/tests/net/gnrc_ndp/Makefile.ci +++ b/tests/net/gnrc_ndp/Makefile.ci @@ -26,5 +26,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_netif/Makefile.ci b/tests/net/gnrc_netif/Makefile.ci index 53110ed2f6..ed1f14b647 100644 --- a/tests/net/gnrc_netif/Makefile.ci +++ b/tests/net/gnrc_netif/Makefile.ci @@ -69,6 +69,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gnrc_netif_ipv6_wait_for_global_address/Makefile.ci b/tests/net/gnrc_netif_ipv6_wait_for_global_address/Makefile.ci index 5310c3ca36..383a0cb827 100644 --- a/tests/net/gnrc_netif_ipv6_wait_for_global_address/Makefile.ci +++ b/tests/net/gnrc_netif_ipv6_wait_for_global_address/Makefile.ci @@ -30,4 +30,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/gnrc_rpl/Makefile.ci b/tests/net/gnrc_rpl/Makefile.ci index 45a8e073f6..e569f93051 100644 --- a/tests/net/gnrc_rpl/Makefile.ci +++ b/tests/net/gnrc_rpl/Makefile.ci @@ -37,5 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_rpl_p2p/Makefile.ci b/tests/net/gnrc_rpl_p2p/Makefile.ci index 47686d2dc3..3a3e0b8405 100644 --- a/tests/net/gnrc_rpl_p2p/Makefile.ci +++ b/tests/net/gnrc_rpl_p2p/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_rpl_srh/Makefile.ci b/tests/net/gnrc_rpl_srh/Makefile.ci index 897a161fe0..050ceb03d7 100644 --- a/tests/net/gnrc_rpl_srh/Makefile.ci +++ b/tests/net/gnrc_rpl_srh/Makefile.ci @@ -40,5 +40,6 @@ BOARD_INSUFFICIENT_MEMORY := \ telosb \ thingy52 \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_sixlowpan/Makefile.ci b/tests/net/gnrc_sixlowpan/Makefile.ci index 7330b4a32d..1a82302b2e 100644 --- a/tests/net/gnrc_sixlowpan/Makefile.ci +++ b/tests/net/gnrc_sixlowpan/Makefile.ci @@ -38,5 +38,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_sixlowpan_frag_minfwd/Makefile.ci b/tests/net/gnrc_sixlowpan_frag_minfwd/Makefile.ci index 432f173ba7..dc725a7815 100644 --- a/tests/net/gnrc_sixlowpan_frag_minfwd/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_frag_minfwd/Makefile.ci @@ -48,6 +48,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_sixlowpan_frag_sfr/Makefile.ci b/tests/net/gnrc_sixlowpan_frag_sfr/Makefile.ci index 2bd0af1df5..94878498c1 100644 --- a/tests/net/gnrc_sixlowpan_frag_sfr/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_frag_sfr/Makefile.ci @@ -50,6 +50,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_sixlowpan_frag_sfr_congure/Makefile.ci b/tests/net/gnrc_sixlowpan_frag_sfr_congure/Makefile.ci index 96920c7a7f..3a8a27b20d 100644 --- a/tests/net/gnrc_sixlowpan_frag_sfr_congure/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_frag_sfr_congure/Makefile.ci @@ -49,6 +49,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci b/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci index 9673025a40..d5a88210e3 100644 --- a/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci @@ -55,6 +55,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/gnrc_sixlowpan_iphc_w_vrb/Makefile.ci b/tests/net/gnrc_sixlowpan_iphc_w_vrb/Makefile.ci index e4bb1a84ba..b65548697e 100644 --- a/tests/net/gnrc_sixlowpan_iphc_w_vrb/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_iphc_w_vrb/Makefile.ci @@ -29,5 +29,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_sock_dns/Makefile.ci b/tests/net/gnrc_sock_dns/Makefile.ci index 92e0336849..5f0e51735e 100644 --- a/tests/net/gnrc_sock_dns/Makefile.ci +++ b/tests/net/gnrc_sock_dns/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ telosb \ thingy52 \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_sock_dodtls/Makefile.ci b/tests/net/gnrc_sock_dodtls/Makefile.ci index 432f173ba7..dc725a7815 100644 --- a/tests/net/gnrc_sock_dodtls/Makefile.ci +++ b/tests/net/gnrc_sock_dodtls/Makefile.ci @@ -48,6 +48,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_sock_ip/Makefile.ci b/tests/net/gnrc_sock_ip/Makefile.ci index 3fcf16a1f0..12d3644a93 100644 --- a/tests/net/gnrc_sock_ip/Makefile.ci +++ b/tests/net/gnrc_sock_ip/Makefile.ci @@ -17,6 +17,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32g0316-disco \ telosb \ + weact-g030f6 \ wsn430-v1_3b \ wsn430-v1_4 \ # diff --git a/tests/net/gnrc_sock_neterr/Makefile.ci b/tests/net/gnrc_sock_neterr/Makefile.ci index 7a945af81a..aaf037fb92 100644 --- a/tests/net/gnrc_sock_neterr/Makefile.ci +++ b/tests/net/gnrc_sock_neterr/Makefile.ci @@ -15,4 +15,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/net/gnrc_sock_tcp/Makefile.ci b/tests/net/gnrc_sock_tcp/Makefile.ci index 91a644a1ee..c2a8a28936 100644 --- a/tests/net/gnrc_sock_tcp/Makefile.ci +++ b/tests/net/gnrc_sock_tcp/Makefile.ci @@ -42,6 +42,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_sock_udp/Makefile.ci b/tests/net/gnrc_sock_udp/Makefile.ci index f199366b1a..acb3d82e7c 100644 --- a/tests/net/gnrc_sock_udp/Makefile.ci +++ b/tests/net/gnrc_sock_udp/Makefile.ci @@ -20,5 +20,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/gnrc_tcp/Makefile.ci b/tests/net/gnrc_tcp/Makefile.ci index 1032458551..12ca88b2ed 100644 --- a/tests/net/gnrc_tcp/Makefile.ci +++ b/tests/net/gnrc_tcp/Makefile.ci @@ -43,6 +43,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_tx_sync/Makefile.ci b/tests/net/gnrc_tx_sync/Makefile.ci index 7083d55bfc..2a204b88c2 100644 --- a/tests/net/gnrc_tx_sync/Makefile.ci +++ b/tests/net/gnrc_tx_sync/Makefile.ci @@ -46,6 +46,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/gnrc_udp/Makefile.ci b/tests/net/gnrc_udp/Makefile.ci index d7ce75820a..6564ee25fe 100644 --- a/tests/net/gnrc_udp/Makefile.ci +++ b/tests/net/gnrc_udp/Makefile.ci @@ -53,6 +53,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/net/ieee802154_security/Makefile.ci b/tests/net/ieee802154_security/Makefile.ci index 66acd1ed8a..894f592347 100644 --- a/tests/net/ieee802154_security/Makefile.ci +++ b/tests/net/ieee802154_security/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/nanocoap_cli/Makefile.ci b/tests/net/nanocoap_cli/Makefile.ci index 8639be2c06..ef20432fd9 100644 --- a/tests/net/nanocoap_cli/Makefile.ci +++ b/tests/net/nanocoap_cli/Makefile.ci @@ -36,6 +36,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/net/netdev_common/Makefile.ci b/tests/net/netdev_common/Makefile.ci index e685ae4766..a0cc10bacb 100644 --- a/tests/net/netdev_common/Makefile.ci +++ b/tests/net/netdev_common/Makefile.ci @@ -23,4 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/netstats_neighbor/Makefile.ci b/tests/net/netstats_neighbor/Makefile.ci index a6943910cb..a4cca69db9 100644 --- a/tests/net/netstats_neighbor/Makefile.ci +++ b/tests/net/netstats_neighbor/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/netutils/Makefile.ci b/tests/net/netutils/Makefile.ci index 6d03d8db95..2a955498a0 100644 --- a/tests/net/netutils/Makefile.ci +++ b/tests/net/netutils/Makefile.ci @@ -28,4 +28,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/slip/Makefile.ci b/tests/net/slip/Makefile.ci index e9ac8392ed..b4cbbb7176 100644 --- a/tests/net/slip/Makefile.ci +++ b/tests/net/slip/Makefile.ci @@ -29,4 +29,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/net/sntp/Makefile.ci b/tests/net/sntp/Makefile.ci index 90b18bf154..962dbafcaf 100644 --- a/tests/net/sntp/Makefile.ci +++ b/tests/net/sntp/Makefile.ci @@ -31,5 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/net/sock_udp_aux/Makefile.ci b/tests/net/sock_udp_aux/Makefile.ci index cd48f71c51..5ce8847f9b 100644 --- a/tests/net/sock_udp_aux/Makefile.ci +++ b/tests/net/sock_udp_aux/Makefile.ci @@ -34,5 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/pkg/elk/Makefile.ci b/tests/pkg/elk/Makefile.ci index 69e8f4b44c..14090b30a7 100644 --- a/tests/pkg/elk/Makefile.ci +++ b/tests/pkg/elk/Makefile.ci @@ -13,5 +13,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32g0316-disco \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/tests/pkg/emlearn/Makefile.ci b/tests/pkg/emlearn/Makefile.ci index a938520f27..6aa39a8261 100644 --- a/tests/pkg/emlearn/Makefile.ci +++ b/tests/pkg/emlearn/Makefile.ci @@ -29,4 +29,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/flashdb_vfs/Makefile.ci b/tests/pkg/flashdb_vfs/Makefile.ci index 6d0692d313..2fbf2750df 100644 --- a/tests/pkg/flashdb_vfs/Makefile.ci +++ b/tests/pkg/flashdb_vfs/Makefile.ci @@ -8,4 +8,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/libb2/Makefile.ci b/tests/pkg/libb2/Makefile.ci index 69e8f4b44c..14090b30a7 100644 --- a/tests/pkg/libb2/Makefile.ci +++ b/tests/pkg/libb2/Makefile.ci @@ -13,5 +13,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32g0316-disco \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/tests/pkg/libcose/Makefile.ci b/tests/pkg/libcose/Makefile.ci index a677466e17..86c951d557 100644 --- a/tests/pkg/libcose/Makefile.ci +++ b/tests/pkg/libcose/Makefile.ci @@ -15,4 +15,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/libfixmath_unittests/Makefile.ci b/tests/pkg/libfixmath_unittests/Makefile.ci index cf9726eee7..84cd4f613a 100644 --- a/tests/pkg/libfixmath_unittests/Makefile.ci +++ b/tests/pkg/libfixmath_unittests/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/pkg/libschc/Makefile.ci b/tests/pkg/libschc/Makefile.ci index 6d0692d313..2fbf2750df 100644 --- a/tests/pkg/libschc/Makefile.ci +++ b/tests/pkg/libschc/Makefile.ci @@ -8,4 +8,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/littlefs2/Makefile.ci b/tests/pkg/littlefs2/Makefile.ci index 03b9fcc7aa..9af084f726 100644 --- a/tests/pkg/littlefs2/Makefile.ci +++ b/tests/pkg/littlefs2/Makefile.ci @@ -23,4 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/pkg/lvgl/Makefile.ci b/tests/pkg/lvgl/Makefile.ci index 16e225a94d..ba0b2b2dd8 100644 --- a/tests/pkg/lvgl/Makefile.ci +++ b/tests/pkg/lvgl/Makefile.ci @@ -28,4 +28,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/pkg/lvgl_touch/Makefile.ci b/tests/pkg/lvgl_touch/Makefile.ci index cf9726eee7..84cd4f613a 100644 --- a/tests/pkg/lvgl_touch/Makefile.ci +++ b/tests/pkg/lvgl_touch/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/pkg/lwip/Makefile.ci b/tests/pkg/lwip/Makefile.ci index 8afe3b56dd..344bce718d 100644 --- a/tests/pkg/lwip/Makefile.ci +++ b/tests/pkg/lwip/Makefile.ci @@ -28,5 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/tests/pkg/lwip_sock_ip/Makefile.ci b/tests/pkg/lwip_sock_ip/Makefile.ci index e530fd5f1c..d86e110ca0 100644 --- a/tests/pkg/lwip_sock_ip/Makefile.ci +++ b/tests/pkg/lwip_sock_ip/Makefile.ci @@ -17,4 +17,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/lwip_sock_tcp/Makefile.ci b/tests/pkg/lwip_sock_tcp/Makefile.ci index cf9726eee7..84cd4f613a 100644 --- a/tests/pkg/lwip_sock_tcp/Makefile.ci +++ b/tests/pkg/lwip_sock_tcp/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/pkg/lwip_sock_udp/Makefile.ci b/tests/pkg/lwip_sock_udp/Makefile.ci index e530fd5f1c..d86e110ca0 100644 --- a/tests/pkg/lwip_sock_udp/Makefile.ci +++ b/tests/pkg/lwip_sock_udp/Makefile.ci @@ -17,4 +17,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/lz4/Makefile.ci b/tests/pkg/lz4/Makefile.ci index 3d483c1794..c4b1317f3c 100644 --- a/tests/pkg/lz4/Makefile.ci +++ b/tests/pkg/lz4/Makefile.ci @@ -49,6 +49,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ wemos-zero \ yarm \ yunjia-nrf51822 \ diff --git a/tests/pkg/microcoap/Makefile.ci b/tests/pkg/microcoap/Makefile.ci index d9981869fb..b3798c27d6 100644 --- a/tests/pkg/microcoap/Makefile.ci +++ b/tests/pkg/microcoap/Makefile.ci @@ -29,6 +29,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ wsn430-v1_3b \ wsn430-v1_4 \ z1 \ diff --git a/tests/pkg/monocypher/Makefile.ci b/tests/pkg/monocypher/Makefile.ci index 2313f08a82..f6d83a6b7d 100644 --- a/tests/pkg/monocypher/Makefile.ci +++ b/tests/pkg/monocypher/Makefile.ci @@ -6,4 +6,5 @@ BOARD_INSUFFICIENT_MEMORY := \ samd10-xmini \ stk3200 \ stm32f030f4-demo \ + weact-g030f6 \ # diff --git a/tests/pkg/relic/Makefile.ci b/tests/pkg/relic/Makefile.ci index 65590fe45b..56af9102ea 100644 --- a/tests/pkg/relic/Makefile.ci +++ b/tests/pkg/relic/Makefile.ci @@ -19,4 +19,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f030f4-demo \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/pkg/spiffs/Makefile.ci b/tests/pkg/spiffs/Makefile.ci index f22cdfa088..602172ccb7 100644 --- a/tests/pkg/spiffs/Makefile.ci +++ b/tests/pkg/spiffs/Makefile.ci @@ -28,5 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32l0538-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ # diff --git a/tests/pkg/tflite-micro/Makefile.ci b/tests/pkg/tflite-micro/Makefile.ci index 1688715c6b..20f6da567e 100644 --- a/tests/pkg/tflite-micro/Makefile.ci +++ b/tests/pkg/tflite-micro/Makefile.ci @@ -102,6 +102,7 @@ BOARD_INSUFFICIENT_MEMORY := \ teensy31 \ usb-kw41z \ weact-f401cc \ + weact-g030f6 \ wemos-zero \ yarm \ yunjia-nrf51822 \ diff --git a/tests/pkg/tinydtls_sock_async/Makefile.ci b/tests/pkg/tinydtls_sock_async/Makefile.ci index dd1c8f3911..19205498b0 100644 --- a/tests/pkg/tinydtls_sock_async/Makefile.ci +++ b/tests/pkg/tinydtls_sock_async/Makefile.ci @@ -68,6 +68,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ telosb \ waspmote-pro \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ zigduino \ diff --git a/tests/pkg/tinyvcdiff/Makefile.ci b/tests/pkg/tinyvcdiff/Makefile.ci index a6943910cb..a4cca69db9 100644 --- a/tests/pkg/tinyvcdiff/Makefile.ci +++ b/tests/pkg/tinyvcdiff/Makefile.ci @@ -24,4 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/pkg/ubasic/Makefile.ci b/tests/pkg/ubasic/Makefile.ci index adf722e62c..26e86112eb 100644 --- a/tests/pkg/ubasic/Makefile.ci +++ b/tests/pkg/ubasic/Makefile.ci @@ -4,4 +4,5 @@ BOARD_INSUFFICIENT_MEMORY := \ samd10-xmini \ stk3200 \ stm32f030f4-demo \ + weact-g030f6 \ # diff --git a/tests/pkg/ucglib/Makefile.ci b/tests/pkg/ucglib/Makefile.ci index fd46f72445..c5bad642eb 100644 --- a/tests/pkg/ucglib/Makefile.ci +++ b/tests/pkg/ucglib/Makefile.ci @@ -13,4 +13,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ waspmote-pro \ + weact-g030f6 \ # diff --git a/tests/pkg/utensor/Makefile.ci b/tests/pkg/utensor/Makefile.ci index 4a6597b1fc..1fc5dbe495 100644 --- a/tests/pkg/utensor/Makefile.ci +++ b/tests/pkg/utensor/Makefile.ci @@ -50,4 +50,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/pkg/wolfssl/Makefile.ci b/tests/pkg/wolfssl/Makefile.ci index 7967777031..4a6c2f601e 100644 --- a/tests/pkg/wolfssl/Makefile.ci +++ b/tests/pkg/wolfssl/Makefile.ci @@ -36,4 +36,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ stm32mp157c-dk2 \ + weact-g030f6 \ # diff --git a/tests/sys/cpp11_condition_variable/Makefile.ci b/tests/sys/cpp11_condition_variable/Makefile.ci index adf722e62c..26e86112eb 100644 --- a/tests/sys/cpp11_condition_variable/Makefile.ci +++ b/tests/sys/cpp11_condition_variable/Makefile.ci @@ -4,4 +4,5 @@ BOARD_INSUFFICIENT_MEMORY := \ samd10-xmini \ stk3200 \ stm32f030f4-demo \ + weact-g030f6 \ # diff --git a/tests/sys/cpp11_thread/Makefile.ci b/tests/sys/cpp11_thread/Makefile.ci index 6d0692d313..2fbf2750df 100644 --- a/tests/sys/cpp11_thread/Makefile.ci +++ b/tests/sys/cpp11_thread/Makefile.ci @@ -8,4 +8,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/sys/crypto/Makefile.ci b/tests/sys/crypto/Makefile.ci index e87da3121c..775d5f475e 100644 --- a/tests/sys/crypto/Makefile.ci +++ b/tests/sys/crypto/Makefile.ci @@ -27,6 +27,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/sys/crypto_aes_ccm/Makefile.ci b/tests/sys/crypto_aes_ccm/Makefile.ci index e87da3121c..775d5f475e 100644 --- a/tests/sys/crypto_aes_ccm/Makefile.ci +++ b/tests/sys/crypto_aes_ccm/Makefile.ci @@ -27,6 +27,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ telosb \ waspmote-pro \ + weact-g030f6 \ z1 \ zigduino \ # diff --git a/tests/sys/posix_semaphore/Makefile.ci b/tests/sys/posix_semaphore/Makefile.ci index 5eb612ea0d..02ec9f8f6b 100644 --- a/tests/sys/posix_semaphore/Makefile.ci +++ b/tests/sys/posix_semaphore/Makefile.ci @@ -28,5 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ yunjia-nrf51822 \ # diff --git a/tests/sys/ps_schedstatistics/Makefile.ci b/tests/sys/ps_schedstatistics/Makefile.ci index 968fe89d7c..7ae2464419 100644 --- a/tests/sys/ps_schedstatistics/Makefile.ci +++ b/tests/sys/ps_schedstatistics/Makefile.ci @@ -23,5 +23,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/tests/sys/pthread_rwlock/Makefile.ci b/tests/sys/pthread_rwlock/Makefile.ci index 0488facc14..3b19ba8051 100644 --- a/tests/sys/pthread_rwlock/Makefile.ci +++ b/tests/sys/pthread_rwlock/Makefile.ci @@ -26,4 +26,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32f0discovery \ stm32g0316-disco \ stm32l0538-disco \ + weact-g030f6 \ # diff --git a/tests/sys/senml_phydat/Makefile.ci b/tests/sys/senml_phydat/Makefile.ci index 7a945af81a..aaf037fb92 100644 --- a/tests/sys/senml_phydat/Makefile.ci +++ b/tests/sys/senml_phydat/Makefile.ci @@ -15,4 +15,5 @@ BOARD_INSUFFICIENT_MEMORY := \ stk3200 \ stm32f030f4-demo \ stm32g0316-disco \ + weact-g030f6 \ # diff --git a/tests/sys/suit_manifest/Makefile.ci b/tests/sys/suit_manifest/Makefile.ci index e1c052f549..df09f36a0b 100644 --- a/tests/sys/suit_manifest/Makefile.ci +++ b/tests/sys/suit_manifest/Makefile.ci @@ -19,5 +19,6 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32g0316-disco \ stm32l0538-disco \ telosb \ + weact-g030f6 \ z1 \ # diff --git a/tests/unittests/Makefile.ci b/tests/unittests/Makefile.ci index 6e38b7579f..cda1908206 100644 --- a/tests/unittests/Makefile.ci +++ b/tests/unittests/Makefile.ci @@ -107,6 +107,7 @@ BOARD_INSUFFICIENT_MEMORY := \ stm32mp157c-dk2 \ teensy31 \ telosb \ + weact-g030f6 \ yunjia-nrf51822 \ z1 \ #