From 666fa243f28811ee017b4d771e0744d2d8e79f44 Mon Sep 17 00:00:00 2001 From: Ze-Hou <90512848+Ze-Hou@users.noreply.github.com> Date: Thu, 30 Oct 2025 06:20:37 +0800 Subject: [PATCH] feature: k230: Add other existing drivers to the ci.attachconfig.yml file (#10869) Resolve issue #10857 Signed-off-by: Ze-Hou --- bsp/k230/.ci/attachconfig/ci.attachconfig.yml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/bsp/k230/.ci/attachconfig/ci.attachconfig.yml b/bsp/k230/.ci/attachconfig/ci.attachconfig.yml index 5131dc7c98..c649cfeaa8 100644 --- a/bsp/k230/.ci/attachconfig/ci.attachconfig.yml +++ b/bsp/k230/.ci/attachconfig/ci.attachconfig.yml @@ -7,3 +7,42 @@ devices.i2c: - CONFIG_RT_USING_I2C=y - CONFIG_BSP_USING_I2C=y - CONFIG_BSP_USING_I2C0=y +devices.adc: + <<: *scons + kconfig: + - CONFIG_RT_USING_ADC=y + - CONFIG_BSP_USING_ADC=y +devices.hwtimer: + <<: *scons + kconfig: + - CONFIG_RT_USING_HWTIMER=y + - CONFIG_BSP_USING_TIMERS=y + - CONFIG_BSP_USING_TIMER0=y +devices.pdma: + <<: *scons + kconfig: + - CONFIG_RT_USING_PDMA=y + - CONFIG_BSP_USING_PDMA=y + - CONFIG_BSP_USING_PDMA_CHANNEL0=y +devices.pwm: + <<: *scons + kconfig: + - CONFIG_RT_USING_PWM=y + - CONFIG_BSP_USING_PWM=y + - CONFIG_BSP_USING_PWM0=y +devices.rtc: + <<: *scons + kconfig: + - CONFIG_RT_USING_RTC=y + - CONFIG_BSP_USING_RTC=y +devices.ts: + <<: *scons + kconfig: + - CONFIG_RT_USING_TS=y + - CONFIG_BSP_USING_TS=y +devices.wdt: + <<: *scons + kconfig: + - CONFIG_RT_USING_WDT=y + - CONFIG_BSP_USING_WDT=y + - CONFIG_BSP_USING_WDT0=y