[S32K144] How to ignore LIN RX messages?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

[S32K144] How to ignore LIN RX messages?

Jump to solution
1,452 Views
szblaci
Contributor III

Hi, I am using SDK to realize LIN slave node and communication. Is it possible to ignore the incoming LIN messages somehow? To disable the uart interrupt (LIN_LPUART_DRV_DisableIRQ) is not a solution for me because I would like to check the activity on the bus. Basically I do not need the content of the messages I need to know only that the master is still alive. 

Labels (1)
Tags (2)
0 Kudos
1 Solution
1,428 Views
Robin_Shen
NXP TechSupport
NXP TechSupport

A slave node waits for the synchronization pulse, and then does synchronization using synchronization
pulse and process the message identifier. Then according to the ID, the slave decides what to do, either
to receive data or to transmit or to do nothing.

Frame processor state machine.png

Best Regards,
Robin

View solution in original post

0 Kudos
2 Replies
1,429 Views
Robin_Shen
NXP TechSupport
NXP TechSupport

A slave node waits for the synchronization pulse, and then does synchronization using synchronization
pulse and process the message identifier. Then according to the ID, the slave decides what to do, either
to receive data or to transmit or to do nothing.

Frame processor state machine.png

Best Regards,
Robin

0 Kudos
1,390 Views
szblaci
Contributor III

Hi, thank you. I have found the function where the PID is processed. I just need to set the action to ignore. 

0 Kudos