Hi,
I have data from an array of around 500 Bytes, which needs to be transferred to another device through CAN.
Please let me know how to do it, and is any interrupt needed to be enabled for the same?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I have data from an array of around 500 Bytes, which needs to be transferred to another device through CAN.
Please let me know how to do it, and is any interrupt needed to be enabled for the same?
You can exchange data over CAN Bus to make use of this protocol. Get started by either writing your own driver source for it or directly using CAN examples provided under the MSP M0 Software Development Kit (SDK).
List of several CAN related examples for MSP M0 devices from this SDK are provided in a table here: MSPM0 SDK Examples Guide - SDK User Guide 1.0 documentation
any interrupt needed to be enabled for the same?
An interrupt will be needed only if the mode of transfer is Interrupt Mode to let data transfer happen asynchronously instead of synchronous transfer using Polling Mode (where a processor shall only continue to transfer data in its execution flow).
Please respond below in case of any further issues.
Kind Regards.