2020-11-06 10:52:50 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
2020-12-10 14:25:20 +00:00
|
|
|
* @file comp.h
|
|
|
|
* @brief This file contains all the function prototypes for
|
|
|
|
* the comp.c file
|
2020-11-06 10:52:50 +00:00
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2021-01-18 15:08:58 +00:00
|
|
|
* <h2><center>© Copyright (c) 2021 STMicroelectronics.
|
2020-11-06 10:52:50 +00: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 -------------------------------------*/
|
2020-12-10 14:25:20 +00:00
|
|
|
#ifndef __COMP_H__
|
|
|
|
#define __COMP_H__
|
|
|
|
|
2020-11-06 10:52:50 +00:00
|
|
|
#ifdef __cplusplus
|
2020-12-10 14:25:20 +00:00
|
|
|
extern "C" {
|
2020-11-06 10:52:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
|
|
|
|
extern COMP_HandleTypeDef hcomp1;
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
|
|
|
|
void MX_COMP1_Init(void);
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Prototypes */
|
|
|
|
|
|
|
|
/* USER CODE END Prototypes */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
#endif /* __COMP_H__ */
|
2020-11-06 10:52:50 +00:00
|
|
|
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|