1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

boards/nucleo-l1: adapted UART configuration

This commit is contained in:
Hauke Petersen 2015-09-15 16:20:49 +02:00 committed by Thomas Eichinger
parent 2e84fbf85e
commit cdcdd185af
3 changed files with 3 additions and 7 deletions

View File

@ -72,11 +72,9 @@ static const timer_conf_t timer_config[] = {
#define UART_0_ISR isr_usart2 #define UART_0_ISR isr_usart2
#define UART_0_BUS_FREQ 32000000 #define UART_0_BUS_FREQ 32000000
/* UART 0 pin configuration */ /* UART 0 pin configuration */
#define UART_0_PORT GPIOA #define UART_0_RX_PIN GPIO(PORT_A, 3)
#define UART_0_PORT_CLKEN() (RCC->AHBENR |= RCC_AHBENR_GPIOAEN) #define UART_0_TX_PIN GPIO(PORT_A, 2)
#define UART_0_RX_PIN 3 #define UART_0_AF GPIO_AF7
#define UART_0_TX_PIN 2
#define UART_0_AF 7
/** /**
* @brief GPIO configuration * @brief GPIO configuration

View File

@ -81,7 +81,6 @@ typedef enum {
} gpio_af_t; } gpio_af_t;
/** /**
* @brief Configure the alternate function for the given pin * @brief Configure the alternate function for the given pin
* *
* @note This is meant for internal use in STM32L1 peripheral drivers only * @note This is meant for internal use in STM32L1 peripheral drivers only

View File

@ -99,7 +99,6 @@ int uart_init_blocking(uart_t uart, uint32_t baudrate)
gpio_t rx_pin = 0; gpio_t rx_pin = 0;
gpio_af_t af = 0; gpio_af_t af = 0;
float clk = 0; float clk = 0;
float divider;
uint16_t mantissa; uint16_t mantissa;
uint8_t fraction; uint8_t fraction;