Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a3d844e6461bc8e927752716038f2d93e4d2c1dd (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
26
27
28
/**
 * @author generated by eTrice
 *
 * Header File of SubSystemClass SS
 * 
 */

#ifndef _SS_H_
#define _SS_H_



/* lifecycle functions
 * init -> start -> run (loop) -> stop -> destroy
 */

void SS_init(void);		/* lifecycle init  	 */
void SS_start(void);	/* lifecycle start 	 */

void SS_run(void);		/* lifecycle run 	 */

void SS_stop(void); 	/* lifecycle stop	 */
void SS_destroy(void); 	/* lifecycle destroy */


#endif /* _SS_H_ */


Back to the top