Posted on February 04, 2018 at 16:05Hello, I am using segger j link debugger if i download the Ac6 STM32 MCU GCC tool chain created project(current builder:Gnu Make builder) then code runs in debug mode,but if i download gitHub project then ...
Posted on January 17, 2018 at 13:00Hello, i am using STM32F429IIT controller.I am trying communicate between CAN1 and CAN2 but yet not success.can you please provide any reference code for the CAN communication.Thanks #stm32f429-can-communication
Posted on January 20, 2018 at 05:37thank you so much now it's working fine.can i transmit(initiate) the CAN communication from CAN slave mode port to CAN master port.and how?
Posted on January 18, 2018 at 04:50Here is the my can init functionstatic void MX_CAN1_Init(void){ hcan1.Instance = CAN1; hcan1.Init.Prescaler = 16; hcan1.Init.Mode = CAN_MODE_NORMAL; hcan1.Init.SJW = CAN_SJW_1TQ; hcan1.Init.BS1 = CAN_BS1_3TQ; ...
Posted on January 18, 2018 at 04:46I followed procedure on https://www.youtube.com/watch?v=GYhsHJi6pKE by this code my program stop in while loop of CAN2_RXuint8_t CAN2_RX(void){ while(!hcan2.Instance->RF0R & CAN_RF0R_FMP0);//CAN_RF0R_FMP0 FOR 3 ...