Hello,
Im using this MicroController as a LIN-Master. i used Halcogen to generate the Code.
linInit();
linSendWakupSignal(linREG);
while(1)
{
linSendHeader(linREG,0xB1);
//while(!linIsRxReady(linREG));
// linGetData(linREG, (uint8_t * const) LIN_RX_data);
}
The Problem is, the MCU doesnt send a Header till i switch the Slave to Master and send a Header from the LIN-Device with the ID 0xB1 to the TMS. Then the TMS starts sending till the next reset.
Im trying to fix this since 4 Days.
Can you help me please