Apply censorship to LIN Slave transmitted frames before they reach Master via CAPL

ぐ巨炮叔叔 提交于 2021-01-28 08:37:35

问题


In my current setup, I have a LIN Master and a LIN slave. The schedule table is unconditional, and never re-negotiated:

  • Master Frame

  • Slave Frame

  • Slave Frame

I'm using physical bus and simulated Master (physical Slave). My goal is to apply censorship to certain LIN frames, in real-time.

For instance, I know that a request from Master (maybe single or multi-frame) will trigger a specific Slave response. I would like to catch this response, say in a CAPL script, perform checks on the content and apply selective censorship to it, so that the frame received by the Master doesn't say what the Slave transmitted in the first place. When no Master request is sent, both Master and Slave keep sending empty frames to fulfill the schedule table.

I can easily "catch" the frame with a non-transparent CAPL, but I'm unsure of how I would re-transmit it.

According to the output() keyword documentation:

To reconfigure response data of LIN frame. In that case RTR selector has to be set to 0. The LIN hardware responds to the next request of the specified frame with the newly configured data.

I don't want to add a delay of one message in transmission. And given the following constraints, I have no idea of how to do this, or if it is even possible with the CAPL API in CANoe:

  • I cannot foresee when a Master Request is broadcasted;
  • I know that Slave will reply immediately with acknowledge;
  • After a time that I cannot foresee, Slave will send additional data that I want to censor;
  • The Slave reply has to be modified in place and re-transmitted;
  • The original Slave reply must never reach the Master.

Rejected pseudo-code:

on linFrame 0x01    // <-- slave frame
{
    if( payload I'm looking for )
    {
        // edit payload content
    }
    output(this)
}

回答1:


Especially since

The original Slave reply must never reach the Master.

you have to physically disconnect Master and Slave and put CANoe inbetween

You would need a network interface with (at least) two LIN channels - one connected to the master and one connected to the slave - and need CANoe be setup as a gateway between these two channels. I.e. acting as a Master towards the Slave and acting as a Slave towards the Master.

In your gateway implementation you can then do whatever you want with the messages exchanged between master and slave.

Doable but not that much fun.



来源:https://stackoverflow.com/questions/59249861/apply-censorship-to-lin-slave-transmitted-frames-before-they-reach-master-via-ca

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!