File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,7 @@ family:
184184 - name : stm32u0x
185185 socs :
186186 - name : stm32u031xx
187+ - name : stm32u073xx
187188 - name : stm32u083xx
188189 - name : stm32u5x
189190 socs :
Original file line number Diff line number Diff line change 1+ # STMicroelectronics STM32U073XX MCU
2+
3+ # Copyright (c) 2024 STMicroelectronics
4+ # SPDX-License-Identifier: Apache-2.0
5+
6+ if SOC_STM32U073XX
7+
8+ config NUM_IRQS
9+ default 32
10+
11+ endif # SOC_STM32U073XX
Original file line number Diff line number Diff line change @@ -14,10 +14,15 @@ config SOC_STM32U031XX
1414 bool
1515 select SOC_SERIES_STM32U0X
1616
17+ config SOC_STM32U073XX
18+ bool
19+ select SOC_SERIES_STM32U0X
20+
1721config SOC_STM32U083XX
1822 bool
1923 select SOC_SERIES_STM32U0X
2024
2125config SOC
2226 default "stm32u031xx" if SOC_STM32U031XX
27+ default "stm32u073xx" if SOC_STM32U073XX
2328 default "stm32u083xx" if SOC_STM32U083XX
You can’t perform that action at this time.
0 commit comments