diff options
| author | hierophect <hierophect@gmail.com> | 2020-04-25 14:16:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-25 14:16:34 -0400 |
| commit | 652a5de2425849fe3a23442bbaa36445cd55ec3e (patch) | |
| tree | caf82afa5a71b94be2ea403d24919b4ebff059b6 /ports/stm/peripherals | |
| parent | b351e9b25773f86b000800c3ce20db492d07ad8a (diff) | |
| parent | 8814dd038e7656b9aeebe6f8a9f63462ae30a71d (diff) | |
Merge pull request #2809 from k0d/stm32f767xx_fix
Adds missing declarations in periph.h for stm32f767xx
Diffstat (limited to 'ports/stm/peripherals')
| -rw-r--r-- | ports/stm/peripherals/stm32f7/stm32f767xx/periph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/stm/peripherals/stm32f7/stm32f767xx/periph.h b/ports/stm/peripherals/stm32f7/stm32f767xx/periph.h index f1878ee2e..98aa5782a 100644 --- a/ports/stm/peripherals/stm32f7/stm32f767xx/periph.h +++ b/ports/stm/peripherals/stm32f7/stm32f767xx/periph.h @@ -52,4 +52,6 @@ const mcu_periph_obj_t mcu_uart_rx_list[25]; #define TIM_PIN_ARRAY_LEN 55 TIM_TypeDef * mcu_tim_banks[TIM_BANK_ARRAY_LEN]; +const mcu_tim_pin_obj_t mcu_tim_pin_list[TIM_PIN_ARRAY_LEN]; + #endif // MICROPY_INCLUDED_STM32_PERIPHERALS_STM32F767XX_PERIPH_H
\ No newline at end of file |
