2016-02-04 02:40 AM
Having a problem getting it to work properly using polling. Reading the STM Peripheral Library PDF it says this:
3. Initialise and configure the CAN using CAN_Init() and CAN_FilterInit() functions.4. Transmit the desired CAN frame using CAN_Transmit() function.5. Check the transmission of a CAN frame using CAN_TransmitStatus() function.6. Cancel the transmission of a CAN frame using CAN_CancelTransmit() function.Does this mean that after the status says the Tx is OK I then have to cancel the transmission? #can-bus-stm32f3032016-02-04 03:43 AM
It is not a check-list or sequence list, just an enumerate list of points.
To check the status do this...To cancel a transmitted to this...You are reading too much into the list, it is not pseudo-code.