Add missing stm32wl/stm32wb chips except stm32wle

This commit is contained in:
Dario Nieuwenhuis
2022-04-08 03:15:27 +02:00
parent 50ff63ab88
commit 0c07d03754
17 changed files with 19 additions and 20 deletions

View File

@ -3,22 +3,8 @@
use std::{iter::FilterMap, path::Path, slice::Iter};
const SUPPORTED_FAMILIES: &[&str] = &[
"stm32f0",
"stm32f1",
"stm32f2",
"stm32f3",
"stm32f4",
"stm32f7",
"stm32g0",
"stm32g4",
"stm32l0",
"stm32l1",
"stm32l4",
"stm32l5",
"stm32h7",
"stm32u5",
"stm32wb55",
"stm32wl55",
"stm32f0", "stm32f1", "stm32f2", "stm32f3", "stm32f4", "stm32f7", "stm32g0", "stm32g4",
"stm32l0", "stm32l1", "stm32l4", "stm32l5", "stm32h7", "stm32u5", "stm32wb", "stm32wl5",
];
const SEPARATOR_START: &str = "# BEGIN GENERATED FEATURES\n";