-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecu_layer_init.h
38 lines (28 loc) · 1.33 KB
/
ecu_layer_init.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
36
37
38
/*
* File : ecu_layer_init.h
* Author : Mohamed Ahmed Abdel Wahab
* LinkedIn : https://www.linkedin.com/in/mohamed-abdel-wahab-162413253/
* Github : https://github.com/moabdelwahab6611
* Created on May 31, 2023, 7:15 PM
*/
#ifndef ECU_LAYER_INIT_H
#define ECU_LAYER_INIT_H
/**************************Includes-Section*****************************/
#include "LED/ecu_led.h"
#include "Button/ecu_button.h"
#include "Relay/ecu_relay.h"
#include "DC_Motor/ecu_dc_motor.h"
#include "7_Segment/ecu_seven_segment.h"
#include "KeyPad/ecu_keypad.h"
#include "Chr_LCD/ecu_chr_lcd.h"
/***********************************************************************/
/**********************Macro Declarations-Section***********************/
/***********************************************************************/
/******************Macro Function Declarations-Section******************/
/***********************************************************************/
/********************Data Types Declarations-Section********************/
/***********************************************************************/
/**********Software Interfaces Functions Declarations-Section***********/
void ecu_layer_intialize(void);
/***********************************************************************/
#endif /* ECU_LAYER_INIT_H */