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

#include "SenderManual.h"

#include "etLogger.h"

#include "etMSCLogger.h"


void SenderManual_init(SenderManual* self){
	ET_MSC_LOGGER_SYNC_ENTRY("SenderManual", "init")
	CommunicationProtocolConjPort_sendData(&self->constData->dataOut);
	CommunicationProtocolConjPort_sendData2(&self->constData->dataOut);
	ET_MSC_LOGGER_SYNC_EXIT
}


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

Back to the top