outputMostPktThis
Valid for: CANoe DE Note:outputMostPktThis() may only be called within the OnMostPkt() event procedure.
Function Syntax
outputMostPktThis();
outputMostPktThis() may only be called within the OnMostPkt() event procedure.
outputMostPktThis();
OnMostPkt(long pktdatalen)
{
// filter destination address 0x100
if(mostPktDestAdr() == 0x100)
{
// forward packet to the successor
outputMostPktThis();
}
}