Why does the CAN Receive block from Raspberry Pi support package not work with PiCAN 2 shield in R2020a and earlier?

2 ビュー (過去 30 日間)
I am using the PiCAN 2 CAN bus shield for Raspberry Pi. In my Simulink model, I inserted a CAN Receive block from the Simulink Support Package for Raspberry Pi. In the model's Configuration Parameters, I set the Interrupt Pin to 25. However, I am unable to observe any CAN bus signal.
When I use other tools such as Vector CANoe, I am able to observe the CAN bus signal. Why does the CAN Receive block from Raspberry Pi support package not work with PiCAN 2 shield?

採用された回答

MathWorks Support Team
MathWorks Support Team 2021 年 10 月 13 日
編集済み: MathWorks Support Team 2021 年 10 月 13 日
Raspberry Pi CAN blocks are designed to work with MCP2515 based CAN shields such as the PiCAN2. For the PiCAN2 shield, however, the interrupt GPIO Pin may not be saved correctly in the code from the model's Configuration Parameters when using MATLAB R2020a or earlier. As a result, the interrupts triggered by the CAN shield are ignored.
To work around the issue, follow the below steps:
1. Execute the following command at the MATLAB Command Prompt:
>> cd(fullfile(codertarget.raspi.internal.getSpPkgRootDir,'include'))
2. Update the file “MW_MCP2515_CAN.h” in the above directory with the following changes at line 33. Replace
#define INTERRUPT_PIN 12
with
#define INTERRUPT_PIN (MW_CAN_INTERRUPTPIN)
3. Restart MATLAB and change the interruption pin accordingly.
  1 件のコメント
Reeno Joseph
Reeno Joseph 2020 年 4 月 22 日
Please make sure that in the model config set the interrup pin is properly set.
For PiCAN2 the interrupt pin is 25.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRaspberry Pi Hardware についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by