-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.cpp
34 lines (31 loc) · 1.65 KB
/
main.cpp
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
/*!******************************************************************************
* *
_____ _____ ____ __ ___ _ _ _ ______ *
| __ \ / ____|___ \ / / / _ \| || | | | | ____| *
| |__) | (___ __) |/ /_ | | | | || |_| | | |__ *
| ___/ \___ \ |__ <| '_ \| | | |__ _| | | __| *
| | ____) |___) | (_) | |_| | | | | |____| | *
|_| |_____/|____/ \___/ \___/ |_| |______|_| *
*
* *
* @file main.cpp *
* @author Storozhenko Roman - D_EL *
* @date 10.03.2013 *
* @copyright The MIT License (MIT). Copyright (c) 2017 Storozhenko Roman *
* @mainpage Main program body *
********************************************************************************/
/*!****************************************************************************
* Include
*/
#include <drivers.h>
#include <systemTSK.h>
/*!****************************************************************************
*
*/
int main(void){
hardInit();
OSinit();
while(1);
return 0;
}
/******************************** END OF FILE ********************************/