Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f3f803fe9bf514551fe84e1549a5c072c0537859 (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
31
32
33
34
/**
 * @author generated by eTrice
 *
 * Header File of ProtocolClass etSystemProtocol
 * 
 */

#ifndef _ETSYSTEMPROTOCOL_H_
#define _ETSYSTEMPROTOCOL_H_

#include "etDatatypes.h"
#include "modelbase/etPort.h"

/* message IDs */
enum etSystemProtocol_msg_ids {
	etSystemProtocol_MSG_MIN = 0,
	etSystemProtocol_IN_poll = 1,
	etSystemProtocol_MSG_MAX = 2
};

/*--------------------- port structs and methods */
typedef etPort etSystemProtocolConjPort;


void etSystemProtocolConjPort_poll(const etSystemProtocolConjPort* self);

/*--------------------- debug helpers */

/* get message string for message id */
const char* etSystemProtocol_getMessageString(int msg_id);


#endif /* _ETSYSTEMPROTOCOL_H_ */

Back to the top