-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
45 lines (39 loc) · 1.54 KB
/
main.c
File metadata and controls
45 lines (39 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
******************************************************************************
* @file DTITAlcohoSensor/main.c
* @author DataTellIt Inc.
* @version V1.0.1
* @date Feb 6, 2021
* @brief This is DataTellIt Alcoho Sensor Main program
******************************************************************************
*
* <h2><center>© COPYRIGHT 2016 - 2021 DataTellIt Inc.</center></h2>
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "main_functions.h"
/* Public variables ---------------------------------------------------------*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* ----------------------- Start implementation ------------------------------*/
/**
* @brief Entrace of the User Application
* @param None
* @retval None
*
* This is the default main used on systems that have the standard C entry point.
*
*/
int main(int argc, char* argv[]) {
// System initialization and setup
setup();
// Main loop
while (1) {
if( loop() < 0 ) break;
}
return 0;
}
/*******************(C)COPYRIGHT 2021 DataTellIt Inc. *****END OF FILE******/