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

3 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 13 de Oct. de 2021
Editada: MathWorks Support Team el 13 de Oct. de 2021
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.

Más respuestas (0)

Categorías

Más información sobre Raspberry Pi Hardware en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by