STM32F4xx HAL Documentation
Hardware Abstraction Layer for STM32F4 familiy
|
CAN Tx message header structure definition. More...
#include <stm32f4xx_hal_can.h>
Data Fields | |
uint32_t | StdId |
uint32_t | ExtId |
uint32_t | IDE |
uint32_t | RTR |
uint32_t | DLC |
FunctionalState | TransmitGlobalTime |
CAN Tx message header structure definition.
Definition at line 155 of file stm32f4xx_hal_can.h.
uint32_t CAN_TxHeaderTypeDef::StdId |
Specifies the standard identifier. This parameter must be a number between Min_Data = 0 and Max_Data = 0x7FF.
Definition at line 157 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().
uint32_t CAN_TxHeaderTypeDef::ExtId |
Specifies the extended identifier. This parameter must be a number between Min_Data = 0 and Max_Data = 0x1FFFFFFF.
Definition at line 160 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().
uint32_t CAN_TxHeaderTypeDef::IDE |
Specifies the type of identifier for the message that will be transmitted. This parameter can be a value of CAN Identifier Type
Definition at line 163 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().
uint32_t CAN_TxHeaderTypeDef::RTR |
Specifies the type of frame for the message that will be transmitted. This parameter can be a value of CAN Remote Transmission Request
Definition at line 166 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().
uint32_t CAN_TxHeaderTypeDef::DLC |
Specifies the length of the frame that will be transmitted. This parameter must be a number between Min_Data = 0 and Max_Data = 8.
Definition at line 169 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().
FunctionalState CAN_TxHeaderTypeDef::TransmitGlobalTime |
Specifies whether the timestamp counter value captured on start of frame transmission, is sent in DATA6 and DATA7 replacing pData[6] and pData[7].
Definition at line 172 of file stm32f4xx_hal_can.h.
Referenced by HAL_CAN_AddTxMessage().