2024-03-22 11:53 PM
I am starting working with STM32. I need to establish a CAN Communication Protocol of STM32F103 (a blue pill board essentially) with Texas Instrument TMS320F28234. I have already established and successfully tested the CAN Protocol at the TMS320F28234 side. Can anyone please share with me some example program for CAN Communication Protocol using STM32F103? Thanks in advance.
Solved! Go to Solution.
2024-03-24 02:36 AM
As stated by @Tesla DeLorean the example is provided in STM32CubeF1 package downloadable from the github or as a complete zip file from here.
Advice: if you will start a project from scratch, don't use HSI as clock source.
2024-03-23 11:47 AM
2024-03-24 02:36 AM
As stated by @Tesla DeLorean the example is provided in STM32CubeF1 package downloadable from the github or as a complete zip file from here.
Advice: if you will start a project from scratch, don't use HSI as clock source.
2024-04-01 01:51 AM
Finally I have been able to establish CAN Communication with STM32F103. The problem I was having was entirely hardware based as I was connecting MCP2551 transreceiver to 3.3 Volt V_cc whereas in its datasheet it is clearly mentioned the V_cc should be 5 Volts.
Thanks @Tesla DeLorean , @SofLit for your help.