Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7fce4d2cb621c4d897620857934d98cbd6ce2ea6 (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
29
30
/**
 * @author generated by eTrice
 *
 * Header File of SubSystemClass SubSys
 * 
 */

#ifndef _NODE1_H_
#define _NODE1_H_



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

void Node1_init(void);		/* lifecycle init  	 */
void Node1_start(void);	/* lifecycle start 	 */

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

void Node1_stop(void); 	/* lifecycle stop	 */
void Node1_destroy(void); 	/* lifecycle destroy */

void Node1_shutdown(void);  /* shutdown the dispatcher loop */


#endif /* _NODE1_H_ */


Back to the top