arch: stm32f1: Fix 80 char limit issue
Change-Id: I1d83c53d509eecf037efb0cafd7f5b5aefdf855d Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
02036c85fb
commit
28537c887b
1 changed files with 12 additions and 6 deletions
|
@ -23,27 +23,33 @@
|
|||
#include <drivers/clock_control/stm32_clock_control.h>
|
||||
|
||||
static const stm32_pin_func_t pin_pa9_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PA9_USART1_TX - 1] = STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
[STM32F1_PINMUX_FUNC_PA9_USART1_TX - 1] =
|
||||
STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
};
|
||||
|
||||
static const stm32_pin_func_t pin_pa10_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PA9_USART1_TX - 1] = STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
[STM32F1_PINMUX_FUNC_PA9_USART1_TX - 1] =
|
||||
STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
};
|
||||
|
||||
static const stm32_pin_func_t pin_pa2_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PA2_USART2_TX - 1] = STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
[STM32F1_PINMUX_FUNC_PA2_USART2_TX - 1] =
|
||||
STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
};
|
||||
|
||||
static const stm32_pin_func_t pin_pa3_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PA3_USART2_RX - 1] = STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
[STM32F1_PINMUX_FUNC_PA3_USART2_RX - 1] =
|
||||
STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
};
|
||||
|
||||
static const stm32_pin_func_t pin_pb10_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PB10_USART3_TX - 1] = STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
[STM32F1_PINMUX_FUNC_PB10_USART3_TX - 1] =
|
||||
STM32F10X_PIN_CONFIG_AF_PUSH_PULL,
|
||||
};
|
||||
|
||||
static const stm32_pin_func_t pin_pb11_funcs[] = {
|
||||
[STM32F1_PINMUX_FUNC_PB11_USART3_RX - 1] = STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
[STM32F1_PINMUX_FUNC_PB11_USART3_RX - 1] =
|
||||
STM32F10X_PIN_CONFIG_BIAS_HIGH_IMPEDANCE,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue