Merge pull request #99 from xoviat/fix-stm32f446

ci: add stm32f446
This commit is contained in:
xoviat 2021-03-20 18:30:12 -05:00 committed by GitHub
commit a66ee4a824
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -52,6 +52,9 @@ jobs:
- package: embassy-stm32f4 - package: embassy-stm32f4
target: thumbv7em-none-eabi target: thumbv7em-none-eabi
features: stm32f405 features: stm32f405
- package: embassy-stm32f4
target: thumbv7em-none-eabi
features: stm32f446
- package: embassy-stm32f4 - package: embassy-stm32f4
target: thumbv7em-none-eabi target: thumbv7em-none-eabi
features: stm32f405,defmt features: stm32f405,defmt

View file

@ -889,7 +889,7 @@ mod irqs {
declare!(TIM8_CC); declare!(TIM8_CC);
declare!(DMA1_STREAM7); declare!(DMA1_STREAM7);
declare!(FMC); declare!(FMC);
declare!(SDIO); // declare!(SDIO);
declare!(TIM5); declare!(TIM5);
declare!(SPI3); declare!(SPI3);
declare!(UART4); declare!(UART4);

View file

@ -278,6 +278,6 @@ usart! {
UART4 => (UART4), UART4 => (UART4),
UART5 => (UART5), UART5 => (UART5),
UART7 => (UART7), // UART7 => (UART7),
UART8 => (UART8), // UART8 => (UART8),
} }