Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c082e63987d3710a9cfca102fc1a8708af74338f (plain) (blame)
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


#include "etLogger.h"

#include "SubSystem.h"

//int main(void) {
//
//
//	etLogger_logInfo("***   T H E   B E G I N   ***");
//
//	SubSystem_init(); // lifecycle init
//	SubSystem_start(); // lifecycle start
//
//	// run Scheduler
//	SubSystem_Scheduler();
//
//	// end the lifecycle
//	SubSystem_stop(); // lifecycle stop
//	SubSystem_destroy(); // lifecycle destroy
//
//	etLogger_logInfo("***   T H E   E N D   ***");
//
//	return 0;
//}

Back to the top