1# STMicroelectronics STM32F303XC MCU
2
3# Copyright (c) 2016 RnDity Sp. z o.o.
4# SPDX-License-Identifier: Apache-2.0
5
6# The HAL expects STM32F302XC to be defined for both the xB and xC variants (only RAM- and Flash-
7# size differ).
8if SOC_STM32F303XB || SOC_STM32F303XC
9
10config NUM_IRQS
11	default 82
12
13config CPU_HAS_ARM_MPU
14	default y
15
16endif # SOC_STM32F303XB || SOC_STM32F303XC
17