Hi i am using stm32f746zg nucleo board and i want to establish communication between two CAN modules where CAN1 should transmit and CAN2 should receive the msg but its not happening dont know why ..can anyone help me with the code ..?
here is my codevoid can(void){ CAN_TxHeaderTypeDef TxHeader; uint32_t TxMailbox; uint8_t usr_msg[10]={'h','e','l','l','o'}; TxHeader.DLC=2; TxHeader.RTR= CAN_RTR_DATA ; TxHeader.IDE= CAN_ID_STD; TxHeader.StdId= 0x65; if(HA...