Current location - Training Enrollment Network - Mathematics courses - Are the function names in different versions of STM32 firmware library functions the same?
Are the function names in different versions of STM32 firmware library functions the same?
The names are generally the same, but the parameters are different. Some older versions are missing a parameter. For example:

The new version is like this

uint 8 _ t CAN _ TransmitStatus(CAN _ TypeDef * CANx,uint8_t TransmitMailbox)

Old edition

uint 8 _ t CAN _ TransmitStatus(uint 8 _ t TransmitMailbox)