forked from Hossamm111/AUTOSAR-CAN-Communication-using-RTOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
21 lines (18 loc) · 910 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/********************************************************************************/
/* Module Name : Main.c */
/* Author : Hossam */
/* Purpose : Main Function */
/********************************************************************************/
#include "Application Layer/Application SWC/APP.h"
/********************************************************************************/
/* Function Name: void main(void) */
/* Inputs : None */
/* Outputs : None */
/* Reentrancy : Non-Reentrant */
/* Synchronous : Synchronous */
/* Description : Start the Program */
/********************************************************************************/
void main(void)
{
APP_START();
}