Motion_EC_Stm32_archived/Core/Inc/usart.h

58 lines
1.5 KiB
C
Raw Normal View History

2020-04-06 21:16:18 +08:00
/**
******************************************************************************
* @file usart.h
* @brief This file contains all the function prototypes for
* the usart.c file
2020-04-06 21:16:18 +08:00
******************************************************************************
* @attention
*
2021-01-06 11:37:19 +08:00
* <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
2020-04-06 21:16:18 +08:00
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under Ultimate Liberty license
* SLA0044, the "License"; You may not use this file except in compliance with
* the License. You may obtain a copy of the License at:
* www.st.com/SLA0044
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USART_H__
#define __USART_H__
2020-04-06 21:16:18 +08:00
#ifdef __cplusplus
extern "C" {
2020-04-06 21:16:18 +08:00
#endif
/* Includes ------------------------------------------------------------------*/
#include "main.h"
/* USER CODE BEGIN Includes */
#include <stdio.h>
#include <stdarg.h>
2020-04-06 21:16:18 +08:00
/* USER CODE END Includes */
extern UART_HandleTypeDef huart4;
2020-07-15 18:26:22 +08:00
extern UART_HandleTypeDef huart1;
2020-04-06 21:16:18 +08:00
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
void MX_UART4_Init(void);
2020-07-15 18:26:22 +08:00
void MX_USART1_UART_Init(void);
2020-04-06 21:16:18 +08:00
/* USER CODE BEGIN Prototypes */
void UartPrint(char * format,...);
2020-04-06 21:16:18 +08:00
/* USER CODE END Prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __USART_H__ */
2020-04-06 21:16:18 +08:00
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/