-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.h
29 lines (22 loc) · 812 Bytes
/
App.h
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
/******************************************************************************
*
* Module: application
*
* File Name: App.h
*
* Description: Header file for Application Tasks.
*
* Author: Mohamed Tarek
******************************************************************************/
#ifndef APP_H_
#define APP_H_
#include "Std_Types.h"
/* Description: Task executes once to initialize all the Modules */
void Init_Task(void);
/* Description: Task executes every 20 Mili-seconds to check the button state */
void Button_Task(void);
/* Description: Task executes every 40 Mili-seconds to refresh the LED */
void Led_Task(void);
/* Description: Task executes every 60 Mili-seconds to get the button status and toggle the led */
void App_Task(void);
#endif /* APP_H_ */