Support for STM32L1

* Add RCC
* Fix more issues with dash in chip names
* Update stm32-data version
* Add blinky and spi example
This commit is contained in:
Ulf Lilleengen
2021-09-21 13:42:27 +02:00
parent 14aa4265db
commit c79485c286
19 changed files with 560 additions and 12 deletions

View File

@ -2,11 +2,12 @@
use std::{iter::FilterMap, path::Path, slice::Iter};
const SUPPORTED_FAMILIES: [&str; 8] = [
const SUPPORTED_FAMILIES: [&str; 9] = [
"stm32f0",
"stm32f4",
"stm32g0",
"stm32l0",
"stm32l1",
"stm32l4",
"stm32h7",
"stm32wb55",