diff --git a/boards/stm32g0316-disco/Makefile.features b/boards/stm32g0316-disco/Makefile.features index 00d9c1d75e78..2756458c9b23 100644 --- a/boards/stm32g0316-disco/Makefile.features +++ b/boards/stm32g0316-disco/Makefile.features @@ -3,6 +3,7 @@ CPU_MODEL = stm32g031j6 # Put defined MCU peripherals here (in alphabetical order) FEATURES_PROVIDED += periph_gpio +FEATURES_PROVIDED += periph_rtc FEATURES_PROVIDED += periph_rtt FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart diff --git a/boards/stm32g0316-disco/include/periph_conf.h b/boards/stm32g0316-disco/include/periph_conf.h index c39574f08d76..e38c33265eff 100644 --- a/boards/stm32g0316-disco/include/periph_conf.h +++ b/boards/stm32g0316-disco/include/periph_conf.h @@ -45,6 +45,7 @@ static const timer_conf_t timer_config[] = { }; #define TIMER_0_ISR isr_tim1_cc +#define TIMER_0_MAX_VALUE 0xffff #define TIMER_NUMOF ARRAY_SIZE(timer_config) /** @} */ diff --git a/boards/weact-g030f6/Makefile b/boards/weact-g030f6/Makefile new file mode 100644 index 000000000000..f8fcbb53a065 --- /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 000000000000..5472bf8b8d8f --- /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 000000000000..6b6a3295ae1a --- /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 000000000000..15a610973eda --- /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 000000000000..2ab803fdf301 --- /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 000000000000..5eb41f9126aa --- /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 000000000000..c798d5f5a18c --- /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 000000000000..8ca29cca671c --- /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 000000000000..e3077ba77cd3 --- /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/cpu/stm32/periph/rtc_all.c b/cpu/stm32/periph/rtc_all.c index d2b93bfccdfb..7df6937a3011 100644 --- a/cpu/stm32/periph/rtc_all.c +++ b/cpu/stm32/periph/rtc_all.c @@ -49,6 +49,11 @@ #define EXTI_REG_FTSR (EXTI->FTSR1) #define EXTI_REG_PR (EXTI->PR1) #define EXTI_REG_IMR (EXTI->IMR1) +#elif defined(CPU_FAM_STM32G0) +#define EXTI_REG_RTSR (EXTI->RTSR1) +#define EXTI_REG_FTSR (EXTI->FTSR1) +#define EXTI_REG_PR (EXTI->RPR1) +#define EXTI_REG_IMR (EXTI->IMR1) #elif defined(CPU_FAM_STM32L5) #define EXTI_REG_IMR (EXTI->IMR1) #else @@ -59,9 +64,10 @@ #endif /* map some RTC register names and bitfield */ -#if defined(CPU_FAM_STM32G4) +#if defined(CPU_FAM_STM32G4) || defined(CPU_FAM_STM32G0) #define RTC_REG_ISR RTC->ICSR - +#define RTC_REG_SR RTC->SR +#define RTC_REG_SCR RTC->SCR #define RTC_ISR_RSF RTC_ICSR_RSF #define RTC_ISR_INIT RTC_ICSR_INIT #define RTC_ISR_INITF RTC_ICSR_INITF @@ -83,6 +89,9 @@ defined(CPU_FAM_STM32L5) #define IRQN (RTC_IRQn) #define ISR_NAME isr_rtc +#elif defined(CPU_FAM_STM32G0) +#define IRQN (RTC_TAMP_IRQn) +#define ISR_NAME isr_rtc_tamp #else #define IRQN (RTC_Alarm_IRQn) #define ISR_NAME isr_rtc_alarm @@ -101,6 +110,11 @@ #define EXTI_FTSR_BIT (EXTI_FTSR1_FT17) #define EXTI_RTSR_BIT (EXTI_RTSR1_RT17) #define EXTI_PR_BIT (EXTI_PR1_PIF17) +#elif defined(CPU_FAM_STM32G0) +#define EXTI_IMR_BIT (EXTI_IMR1_IM11) +#define EXTI_FTSR_BIT (EXTI_FTSR1_FT11) +#define EXTI_RTSR_BIT (EXTI_RTSR1_RT11) +#define EXTI_PR_BIT (EXTI_RPR1_RPIF11) #else #if defined(CPU_FAM_STM32L0) #define EXTI_IMR_BIT (EXTI_IMR_IM17) @@ -252,9 +266,11 @@ void rtc_init(void) /* select input clock and enable the RTC */ stmclk_dbp_unlock(); - #if defined(CPU_FAM_STM32L5) +#if defined(CPU_FAM_STM32L5) periph_clk_en(APB1, RCC_APB1ENR1_RTCAPBEN); - #endif +#elif defined(CPU_FAM_STM32G0) + periph_clk_en(APB1, RCC_APBENR1_RTCAPBEN); +#endif EN_REG &= ~(CLKSEL_MASK); #if IS_ACTIVE(CONFIG_BOARD_HAS_LSE) EN_REG |= (CLKSEL_LSE | EN_BIT); @@ -398,7 +414,7 @@ void rtc_poweroff(void) void ISR_NAME(void) { -#if !defined(CPU_FAM_STM32L5) +#if !defined(CPU_FAM_STM32L5) && !defined(CPU_FAM_STM32G0) if (RTC_REG_ISR & RTC_ISR_ALRAF) { if (isr_ctx.cb != NULL) { isr_ctx.cb(isr_ctx.arg); diff --git a/examples/asymcute_mqttsn/Makefile.ci b/examples/asymcute_mqttsn/Makefile.ci index bc11819a7c22..32a4b17d1e2d 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 d7b6950877c0..68f619b9175f 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 e5c68b46b9a8..e5d03bc29624 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 84627c6da470..b135ba2e43f5 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 ec80ea44805b..c66a88c7ab96 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 0d8d734c7b04..9484f410ca78 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 6110d18ded48..5ef78e840543 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 bb6a01054150..4783cb20a818 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 1b984863cfd2..5ee8cd4cfa68 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 fa31b2b6a357..30cafac08986 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 e13f71fb2a14..dd2697aa44ea 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 eb2278c90779..f0862b2ffce0 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 7eb163419d4f..dac62cb2cfb6 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 2cddd9122c65..1e3e115940d5 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 1b095d9ed2f4..7bbdb6c6c1e9 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 ae39d8c9a6cf..65e1c1396d7e 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 45ae6d2e25c6..20d1adb16ffc 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 9ab137cef9a7..064f53dcca19 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 811a5ad9d9cb..1bccc4ef64d5 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 3c52addf18ce..ff0a6e69cdbd 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 47eb8403210a..c116a7e4f4c1 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 5c78ea7d12f9..836d6739ef11 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 6fcb34c595e0..b43b34237637 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 3d62d913a9ef..ab85373966b9 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 ae6971b10e17..fe99b23d661d 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 a8fce0e27fe7..5ac78c7a1719 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 4b0abb9a45ef..9000c4d214ea 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 2f6ff8556ea9..229e3efd0fa8 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 e685ae476684..a0cc10bacb6d 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 77e8cf39f4fe..fcffee05fdf5 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 f948bfe2a377..f2aea054bb76 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 cf9726eee7f6..84cd4f613afb 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 0a3316148bab..c998da0fad8b 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 0a3316148bab..c998da0fad8b 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 7092fda88a57..ec28f7921a1e 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 77e8cf39f4fe..fcffee05fdf5 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 77e8cf39f4fe..fcffee05fdf5 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 6adc9bc40094..5bed47b5473a 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 54f67f94b5d3..53bfe5b5a6d7 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 8ac56df13c8c..dc9fea5cbd4d 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 486b355ae3dc..621348d7824c 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 90a29f0c2f12..224e8c69a807 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 905beae79551..59a516611e2c 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 6fbb084e2b25..413f24b96ffa 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 f7360d257da6..ccbb1ec43b43 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 dd1c8f39116b..19205498b059 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 a7a36a2b4ee0..06000277d097 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 f7360d257da6..ccbb1ec43b43 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 897a161fe0a9..050ceb03d7aa 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 432f173ba7c4..dc725a781556 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 8838d59e6182..cae4b9c73036 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 a52553f22eca..1de26cdae0b2 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 4a04f9f3168c..469adeb62dc5 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 e4bb1a84ba30..b65548697e6f 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 48008460982d..6b7b900c44b7 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 e685ae476684..a0cc10bacb6d 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 3835305d1d4f..67b6ed3593e9 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 53110ed2f656..ed1f14b647e9 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 5310c3ca3605..383a0cb82794 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 45a8e073f691..e569f9305147 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 47686d2dc31d..3a3e0b840594 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 897a161fe0a9..050ceb03d7aa 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 7330b4a32df7..1a82302b2e7b 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 432f173ba7c4..dc725a781556 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 2bd0af1df512..94878498c16f 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 96920c7a7f33..3a8a27b20d8f 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 9673025a405a..d5a88210e317 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 e4bb1a84ba30..b65548697e6f 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 92e033684983..5f0e51735e85 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 432f173ba7c4..dc725a781556 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 3fcf16a1f094..12d3644a93a6 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 7a945af81a68..aaf037fb9263 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 91a644a1eee7..c2a8a2893686 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 f199366b1ae2..acb3d82e7ca9 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 103245855142..12ca88b2ed19 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 7083d55bfc0f..2a204b88c233 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 d7ce75820afd..6564ee25fe5d 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 66acd1ed8a93..894f59234784 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 8639be2c0671..ef20432fd9c9 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 e685ae476684..a0cc10bacb6d 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 a6943910cb17..a4cca69db90d 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 6d03d8db950e..2a955498a016 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 e9ac8392edf9..b4cbbb71760a 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 90b18bf15494..962dbafcaf8a 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 cd48f71c516e..5ce8847f9b9e 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 69e8f4b44cd0..14090b30a7d6 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 a938520f27bb..6aa39a82618d 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 6d0692d313a9..2fbf2750df76 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 69e8f4b44cd0..14090b30a7d6 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 a677466e17c9..86c951d5573c 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 cf9726eee7f6..84cd4f613afb 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 6d0692d313a9..2fbf2750df76 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 03b9fcc7aab2..9af084f72664 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 16e225a94dea..ba0b2b2dd882 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 cf9726eee7f6..84cd4f613afb 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 8afe3b56ddb6..344bce718dc8 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 e530fd5f1c09..d86e110ca06b 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 cf9726eee7f6..84cd4f613afb 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 e530fd5f1c09..d86e110ca06b 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 3d483c1794c0..c4b1317f3c4a 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 d9981869fb9f..b3798c27d60e 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 2313f08a82fa..f6d83a6b7db7 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 65590fe45b6a..56af9102ea9d 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 f22cdfa08817..602172ccb7d2 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 1688715c6b33..20f6da567e00 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 dd1c8f39116b..19205498b059 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 a6943910cb17..a4cca69db90d 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 adf722e62cce..26e86112eb82 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 fd46f7244537..c5bad642ebad 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 4a6597b1fc99..1fc5dbe4956a 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 79677770311c..4a6c2f601ebe 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 adf722e62cce..26e86112eb82 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 6d0692d313a9..2fbf2750df76 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 e87da3121c0c..775d5f475e1b 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 e87da3121c0c..775d5f475e1b 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 5eb612ea0ded..02ec9f8f6bbc 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 968fe89d7cc3..7ae24644195e 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 0488facc149e..3b19ba80519c 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 7a945af81a68..aaf037fb9263 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 e1c052f549f8..df09f36a0b98 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 6e38b7579f45..cda190820678 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 \ #