Please apply attached patch to include support to STM32F030CC, suggested by Florian.
BR, Alan
From 4baa1734b62b3bc669594da8ea396520d08c4457 Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis <acas...@gmail.com> Date: Thu, 6 Feb 2020 13:33:13 -0300 Subject: [PATCH] Small fix to add support to STM32F030CC --- arch/arm/include/stm32f0l0g0/chip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/stm32f0l0g0/chip.h b/arch/arm/include/stm32f0l0g0/chip.h index 6c9b9799d0..5682c9adc8 100644 --- a/arch/arm/include/stm32f0l0g0/chip.h +++ b/arch/arm/include/stm32f0l0g0/chip.h @@ -50,7 +50,7 @@ /* Get customizations for each supported chip */ -#if defined(CONFIG_ARCH_CHIP_STM32F030RC) +#if defined(CONFIG_ARCH_CHIP_STM32F030RC || CONFIG_ARCH_CHIP_STM32F030CC) # define STM32_FLASH_SIZE (256*1024) /* 256Kb */ # define STM32_SRAM_SIZE (32*1024) /* 32Kb */ -- 2.20.1