comparison Small_CPU/Src/stm32f4xx_hal_msp_v3.c @ 981:c6c781a2e85b default

Merge into default
author heinrichsweikamp
date Tue, 11 Feb 2025 18:12:00 +0100
parents f72613a152dd
children
comparison
equal deleted inserted replaced
871:f7318457df4d 981:c6c781a2e85b
240 GPIO_InitStruct.Alternate = GPIO_AF7_USART1; 240 GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
241 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); 241 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
242 242
243 GPIO_InitStruct.Pin = GPIO_PIN_10; 243 GPIO_InitStruct.Pin = GPIO_PIN_10;
244 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); 244 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
245
246 HAL_NVIC_SetPriority(USART1_IRQn, 1, 3);
247 HAL_NVIC_EnableIRQ(USART1_IRQn);
245 } 248 }
246 } 249 }
247 250
248 251
249 void HAL_UART_MspDeInit(UART_HandleTypeDef* huart) 252 void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)