User Activity

can anyone help me with the code ....thanks in advance here is my codestatic void MX_CAN1_Init(void){ /* USER CODE BEGIN CAN1_Init 0 */ /* USER CODE END CAN1_Init 0 */ /* USER CODE BEGIN CAN1_Init 1 */ /* USER CODE END CAN1_Init 1 */ hcan1.Instance =...
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...