-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.h
35 lines (26 loc) · 1.23 KB
/
application.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
30
31
32
33
34
35
/*
* File: application.h
* Author: Mohamed Ahmed Abdel Wahab
* LinkedIn : https://www.linkedin.com/in/mohamed-abdel-wahab-162413253/
* Github : https://github.com/moabdelwahab6611
* Created on May 21, 2023, 6:46 PM
*/
#ifndef APPLICATION_H
#define APPLICATION_H
/**************************Includes-Section*****************************/
#include "ECU_Layer/ecu_layer_init.h"
/***********************************************************************/
/**********************Macro Declarations-Section***********************/
/***********************************************************************/
/******************Macro Function Declarations-Section******************/
/***********************************************************************/
/********************Data Types Declarations-Section********************/
extern keypad_t keypad1;
extern led_t led1;
extern chr_4bit_lcd_t lcd_1;
extern chr_8bit_lcd_t lcd_2;
/***********************************************************************/
/**********Software Interfaces Functions Declarations-Section***********/
void application_intialize(void);
/***********************************************************************/
#endif /* APPLICATION_H */