source: ecs_cellMon/firmware/Core/Inc/comp.h

Last change on this file was 3, checked in by f.jahn, 20 months ago

fw hinzugfügt-->zed

File size: 1.5 KB
Line 
1/**
2  ******************************************************************************
3  * @file    comp.h
4  * @brief   This file contains all the function prototypes for
5  *          the comp.c file
6  ******************************************************************************
7  * @attention
8  *
9  * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
10  * All rights reserved.</center></h2>
11  *
12  * This software component is licensed by ST under BSD 3-Clause license,
13  * the "License"; You may not use this file except in compliance with the
14  * License. You may obtain a copy of the License at:
15  *                        opensource.org/licenses/BSD-3-Clause
16  *
17  ******************************************************************************
18  */
19/* Define to prevent recursive inclusion -------------------------------------*/
20#ifndef __COMP_H__
21#define __COMP_H__
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/* Includes ------------------------------------------------------------------*/
28#include "main.h"
29
30/* USER CODE BEGIN Includes */
31
32/* USER CODE END Includes */
33
34extern COMP_HandleTypeDef hcomp1;
35extern COMP_HandleTypeDef hcomp2;
36
37/* USER CODE BEGIN Private defines */
38
39/* USER CODE END Private defines */
40
41void MX_COMP1_Init(void);
42void MX_COMP2_Init(void);
43
44/* USER CODE BEGIN Prototypes */
45
46/* USER CODE END Prototypes */
47
48#ifdef __cplusplus
49}
50#endif
51
52#endif /* __COMP_H__ */
53
54/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.