STM32CubeMX now provides proper function declaration.

cert
Rob Riggs 2018-10-28 21:34:48 -05:00
rodzic 0fcbc6f919
commit 3cbe22dd7d
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -48,7 +48,6 @@
*/
/* Includes ------------------------------------------------------------------*/
#include "stm32l4xx_hal.h"
extern DMA_HandleTypeDef hdma_adc1;
extern DMA_HandleTypeDef hdma_dac_ch1;
@ -63,9 +62,11 @@ extern DMA_HandleTypeDef hdma_usart3_rx;
extern void _Error_Handler(char *, int);
/* USER CODE BEGIN 0 */
void HAL_TIM_MspPostInit(TIM_HandleTypeDef* htim);
/* USER CODE END 0 */
/**
void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim);
/**
* Initializes the Global MSP.
*/
void HAL_MspInit(void)
@ -150,7 +151,6 @@ void HAL_ADC_MspInit(ADC_HandleTypeDef* hadc)
__HAL_LINKDMA(hadc,DMA_Handle,hdma_adc1);
/* USER CODE BEGIN ADC1_MspInit 1 */
/* USER CODE END ADC1_MspInit 1 */
}