Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 20be31165675e408bb6ea0abeee51db1671336fe (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
/**
 * @author generated by eTrice
 *
 * Source File of ActorClass ReceiverManual
 * 
 */

#include "ReceiverManual.h"

#include "etLogger.h"

#include "etMSCLogger.h"


void ReceiverManual_init(ReceiverManual* self){
	ET_MSC_LOGGER_SYNC_ENTRY("ReceiverManual", "init")
	CommunicationProtocolPort_receivedData(&self->constData->dataIn);
	ET_MSC_LOGGER_SYNC_EXIT
}


void ReceiverManual_ReceiveMessage(void* self, etInt16 localId, const etMessage* msg){
	ET_MSC_LOGGER_SYNC_ENTRY("ReceiverManual", "ReceiveMessage")
	ET_MSC_LOGGER_SYNC_EXIT
}

Back to the top