stm32-metapac: change af from string to u8

This commit is contained in:
Dario Nieuwenhuis
2022-02-23 19:43:00 +01:00
parent 042e7d6de7
commit f14cacbf93
3 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ pub struct PeripheralRccRegister {
pub struct PeripheralPin {
pub pin: &'static str,
pub signal: &'static str,
pub af: Option<&'static str>,
pub af: Option<u8>,
}
#[derive(Debug, Eq, PartialEq, Clone)]