Add WBA5[045]

This commit is contained in:
Dario Nieuwenhuis 2024-04-29 00:43:07 +02:00
parent f2f067ce14
commit d296bed417
2 changed files with 1 additions and 4 deletions

View File

@ -809,9 +809,6 @@ static NOPELIST: &[&str] = &[
// not supported yet, planned. Pull requests welcome! // not supported yet, planned. Pull requests welcome!
"STM32H7R", "STM32H7R",
"STM32H7S", "STM32H7S",
"STM32WBA50",
"STM32WBA54",
"STM32WBA55",
// Does not exist in ST website. No datasheet, no RM. // Does not exist in ST website. No datasheet, no RM.
"STM32GBK", "STM32GBK",
"STM32L485", "STM32L485",

View File

@ -516,7 +516,7 @@ static PICK_NVIC: RegexMap<&str> = RegexMap::new(&[
("STM32WL5.*:cm4", "NVIC1"), ("STM32WL5.*:cm4", "NVIC1"),
("STM32WL5.*:cm0p", "NVIC2"), ("STM32WL5.*:cm0p", "NVIC2"),
// Exception 2: TrustZone: NVIC1 is Secure mode, NVIC2 is NonSecure mode. For now, we pick the NonSecure one. // Exception 2: TrustZone: NVIC1 is Secure mode, NVIC2 is NonSecure mode. For now, we pick the NonSecure one.
("STM32(L5|U5|H5[2367]|WBA).*", "NVIC2"), ("STM32(L5|U5|H5[2367]|WBA5[245]).*", "NVIC2"),
// catch-all: Most chips have a single NVIC, named "NVIC" // catch-all: Most chips have a single NVIC, named "NVIC"
(".*", "NVIC"), (".*", "NVIC"),
]); ]);