stm32f1xx_hal_can_legacy.h 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. /**
  2. ******************************************************************************
  3. * @file stm32f1xx_hal_can_legacy.h
  4. * @author MCD Application Team
  5. * @brief Header file of CAN HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef __STM32F1xx_HAL_CAN_LEGACY_H
  20. #define __STM32F1xx_HAL_CAN_LEGACY_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #if defined(STM32F103x6) || defined(STM32F103xB) || defined(STM32F103xE) || \
  25. defined(STM32F103xG) || defined(STM32F105xC) || defined(STM32F107xC)
  26. /* Includes ------------------------------------------------------------------*/
  27. #include "stm32f1xx_hal_def.h"
  28. /** @addtogroup STM32F1xx_HAL_Driver
  29. * @{
  30. */
  31. /** @addtogroup CAN
  32. * @{
  33. */
  34. /* Exported types ------------------------------------------------------------*/
  35. /** @defgroup CAN_Exported_Types CAN Exported Types
  36. * @{
  37. */
  38. /**
  39. * @brief HAL State structures definition
  40. */
  41. typedef enum
  42. {
  43. HAL_CAN_STATE_RESET = 0x00U, /*!< CAN not yet initialized or disabled */
  44. HAL_CAN_STATE_READY = 0x01U, /*!< CAN initialized and ready for use */
  45. HAL_CAN_STATE_BUSY = 0x02U, /*!< CAN process is ongoing */
  46. HAL_CAN_STATE_BUSY_TX = 0x12U, /*!< CAN process is ongoing */
  47. HAL_CAN_STATE_BUSY_RX0 = 0x22U, /*!< CAN process is ongoing */
  48. HAL_CAN_STATE_BUSY_RX1 = 0x32U, /*!< CAN process is ongoing */
  49. HAL_CAN_STATE_BUSY_TX_RX0 = 0x42U, /*!< CAN process is ongoing */
  50. HAL_CAN_STATE_BUSY_TX_RX1 = 0x52U, /*!< CAN process is ongoing */
  51. HAL_CAN_STATE_BUSY_RX0_RX1 = 0x62U, /*!< CAN process is ongoing */
  52. HAL_CAN_STATE_BUSY_TX_RX0_RX1 = 0x72U, /*!< CAN process is ongoing */
  53. HAL_CAN_STATE_TIMEOUT = 0x03U, /*!< CAN in Timeout state */
  54. HAL_CAN_STATE_ERROR = 0x04U /*!< CAN error state */
  55. }HAL_CAN_StateTypeDef;
  56. /**
  57. * @brief CAN init structure definition
  58. */
  59. typedef struct
  60. {
  61. uint32_t Prescaler; /*!< Specifies the length of a time quantum.
  62. This parameter must be a number between Min_Data = 1 and Max_Data = 1024 */
  63. uint32_t Mode; /*!< Specifies the CAN operating mode.
  64. This parameter can be a value of @ref CAN_operating_mode */
  65. uint32_t SJW; /*!< Specifies the maximum number of time quanta
  66. the CAN hardware is allowed to lengthen or
  67. shorten a bit to perform resynchronization.
  68. This parameter can be a value of @ref CAN_synchronisation_jump_width */
  69. uint32_t BS1; /*!< Specifies the number of time quanta in Bit Segment 1.
  70. This parameter can be a value of @ref CAN_time_quantum_in_bit_segment_1 */
  71. uint32_t BS2; /*!< Specifies the number of time quanta in Bit Segment 2.
  72. This parameter can be a value of @ref CAN_time_quantum_in_bit_segment_2 */
  73. uint32_t TTCM; /*!< Enable or disable the time triggered communication mode.
  74. This parameter can be set to ENABLE or DISABLE. */
  75. uint32_t ABOM; /*!< Enable or disable the automatic bus-off management.
  76. This parameter can be set to ENABLE or DISABLE */
  77. uint32_t AWUM; /*!< Enable or disable the automatic wake-up mode.
  78. This parameter can be set to ENABLE or DISABLE */
  79. uint32_t NART; /*!< Enable or disable the non-automatic retransmission mode.
  80. This parameter can be set to ENABLE or DISABLE */
  81. uint32_t RFLM; /*!< Enable or disable the receive FIFO Locked mode.
  82. This parameter can be set to ENABLE or DISABLE */
  83. uint32_t TXFP; /*!< Enable or disable the transmit FIFO priority.
  84. This parameter can be set to ENABLE or DISABLE */
  85. }CAN_InitTypeDef;
  86. /**
  87. * @brief CAN Tx message structure definition
  88. */
  89. typedef struct
  90. {
  91. uint32_t StdId; /*!< Specifies the standard identifier.
  92. This parameter must be a number between Min_Data = 0 and Max_Data = 0x7FF */
  93. uint32_t ExtId; /*!< Specifies the extended identifier.
  94. This parameter must be a number between Min_Data = 0 and Max_Data = 0x1FFFFFFF */
  95. uint32_t IDE; /*!< Specifies the type of identifier for the message that will be transmitted.
  96. This parameter can be a value of @ref CAN_Identifier_Type */
  97. uint32_t RTR; /*!< Specifies the type of frame for the message that will be transmitted.
  98. This parameter can be a value of @ref CAN_remote_transmission_request */
  99. uint32_t DLC; /*!< Specifies the length of the frame that will be transmitted.
  100. This parameter must be a number between Min_Data = 0 and Max_Data = 8 */
  101. uint8_t Data[8]; /*!< Contains the data to be transmitted.
  102. This parameter must be a number between Min_Data = 0 and Max_Data = 0xFF */
  103. }CanTxMsgTypeDef;
  104. /**
  105. * @brief CAN Rx message structure definition
  106. */
  107. typedef struct
  108. {
  109. uint32_t StdId; /*!< Specifies the standard identifier.
  110. This parameter must be a number between Min_Data = 0 and Max_Data = 0x7FF */
  111. uint32_t ExtId; /*!< Specifies the extended identifier.
  112. This parameter must be a number between Min_Data = 0 and Max_Data = 0x1FFFFFFF */
  113. uint32_t IDE; /*!< Specifies the type of identifier for the message that will be received.
  114. This parameter can be a value of @ref CAN_Identifier_Type */
  115. uint32_t RTR; /*!< Specifies the type of frame for the received message.
  116. This parameter can be a value of @ref CAN_remote_transmission_request */
  117. uint32_t DLC; /*!< Specifies the length of the frame that will be received.
  118. This parameter must be a number between Min_Data = 0 and Max_Data = 8 */
  119. uint8_t Data[8]; /*!< Contains the data to be received.
  120. This parameter must be a number between Min_Data = 0 and Max_Data = 0xFF */
  121. uint32_t FMI; /*!< Specifies the index of the filter the message stored in the mailbox passes through.
  122. This parameter must be a number between Min_Data = 0 and Max_Data = 0xFF */
  123. uint32_t FIFONumber; /*!< Specifies the receive FIFO number.
  124. This parameter can be CAN_FIFO0 or CAN_FIFO1 */
  125. }CanRxMsgTypeDef;
  126. /**
  127. * @brief CAN handle Structure definition
  128. */
  129. typedef struct
  130. {
  131. CAN_TypeDef *Instance; /*!< Register base address */
  132. CAN_InitTypeDef Init; /*!< CAN required parameters */
  133. CanTxMsgTypeDef* pTxMsg; /*!< Pointer to transmit structure */
  134. CanRxMsgTypeDef* pRxMsg; /*!< Pointer to reception structure for RX FIFO0 msg */
  135. CanRxMsgTypeDef* pRx1Msg; /*!< Pointer to reception structure for RX FIFO1 msg */
  136. __IO HAL_CAN_StateTypeDef State; /*!< CAN communication state */
  137. HAL_LockTypeDef Lock; /*!< CAN locking object */
  138. __IO uint32_t ErrorCode; /*!< CAN Error code */
  139. }CAN_HandleTypeDef;
  140. /**
  141. * @}
  142. */
  143. /* Exported constants --------------------------------------------------------*/
  144. /** @defgroup CAN_Exported_Constants CAN Exported Constants
  145. * @{
  146. */
  147. /** @defgroup CAN_Error_Code CAN Error Code
  148. * @{
  149. */
  150. #define HAL_CAN_ERROR_NONE 0x00000000U /*!< No error */
  151. #define HAL_CAN_ERROR_EWG 0x00000001U /*!< EWG error */
  152. #define HAL_CAN_ERROR_EPV 0x00000002U /*!< EPV error */
  153. #define HAL_CAN_ERROR_BOF 0x00000004U /*!< BOF error */
  154. #define HAL_CAN_ERROR_STF 0x00000008U /*!< Stuff error */
  155. #define HAL_CAN_ERROR_FOR 0x00000010U /*!< Form error */
  156. #define HAL_CAN_ERROR_ACK 0x00000020U /*!< Acknowledgment error */
  157. #define HAL_CAN_ERROR_BR 0x00000040U /*!< Bit recessive */
  158. #define HAL_CAN_ERROR_BD 0x00000080U /*!< LEC dominant */
  159. #define HAL_CAN_ERROR_CRC 0x00000100U /*!< LEC transfer error */
  160. #define HAL_CAN_ERROR_FOV0 0x00000200U /*!< FIFO0 overrun error */
  161. #define HAL_CAN_ERROR_FOV1 0x00000400U /*!< FIFO1 overrun error */
  162. #define HAL_CAN_ERROR_TXFAIL 0x00000800U /*!< Transmit failure */
  163. /**
  164. * @}
  165. */
  166. /** @defgroup CAN_InitStatus CAN initialization Status
  167. * @{
  168. */
  169. #define CAN_INITSTATUS_FAILED 0x00000000U /*!< CAN initialization failed */
  170. #define CAN_INITSTATUS_SUCCESS 0x00000001U /*!< CAN initialization OK */
  171. /**
  172. * @}
  173. */
  174. /** @defgroup CAN_operating_mode CAN Operating Mode
  175. * @{
  176. */
  177. #define CAN_MODE_NORMAL 0x00000000U /*!< Normal mode */
  178. #define CAN_MODE_LOOPBACK ((uint32_t)CAN_BTR_LBKM) /*!< Loopback mode */
  179. #define CAN_MODE_SILENT ((uint32_t)CAN_BTR_SILM) /*!< Silent mode */
  180. #define CAN_MODE_SILENT_LOOPBACK ((uint32_t)(CAN_BTR_LBKM | CAN_BTR_SILM)) /*!< Loopback combined with silent mode */
  181. /**
  182. * @}
  183. */
  184. /** @defgroup CAN_synchronisation_jump_width CAN Synchronization Jump Width
  185. * @{
  186. */
  187. #define CAN_SJW_1TQ 0x00000000U /*!< 1 time quantum */
  188. #define CAN_SJW_2TQ ((uint32_t)CAN_BTR_SJW_0) /*!< 2 time quantum */
  189. #define CAN_SJW_3TQ ((uint32_t)CAN_BTR_SJW_1) /*!< 3 time quantum */
  190. #define CAN_SJW_4TQ ((uint32_t)CAN_BTR_SJW) /*!< 4 time quantum */
  191. /**
  192. * @}
  193. */
  194. /** @defgroup CAN_time_quantum_in_bit_segment_1 CAN Time Quantum in Bit Segment 1
  195. * @{
  196. */
  197. #define CAN_BS1_1TQ 0x00000000U /*!< 1 time quantum */
  198. #define CAN_BS1_2TQ ((uint32_t)CAN_BTR_TS1_0) /*!< 2 time quantum */
  199. #define CAN_BS1_3TQ ((uint32_t)CAN_BTR_TS1_1) /*!< 3 time quantum */
  200. #define CAN_BS1_4TQ ((uint32_t)(CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 4 time quantum */
  201. #define CAN_BS1_5TQ ((uint32_t)CAN_BTR_TS1_2) /*!< 5 time quantum */
  202. #define CAN_BS1_6TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_0)) /*!< 6 time quantum */
  203. #define CAN_BS1_7TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_1)) /*!< 7 time quantum */
  204. #define CAN_BS1_8TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 8 time quantum */
  205. #define CAN_BS1_9TQ ((uint32_t)CAN_BTR_TS1_3) /*!< 9 time quantum */
  206. #define CAN_BS1_10TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_0)) /*!< 10 time quantum */
  207. #define CAN_BS1_11TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_1)) /*!< 11 time quantum */
  208. #define CAN_BS1_12TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 12 time quantum */
  209. #define CAN_BS1_13TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2)) /*!< 13 time quantum */
  210. #define CAN_BS1_14TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2 | CAN_BTR_TS1_0)) /*!< 14 time quantum */
  211. #define CAN_BS1_15TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2 | CAN_BTR_TS1_1)) /*!< 15 time quantum */
  212. #define CAN_BS1_16TQ ((uint32_t)CAN_BTR_TS1) /*!< 16 time quantum */
  213. /**
  214. * @}
  215. */
  216. /** @defgroup CAN_time_quantum_in_bit_segment_2 CAN Time Quantum in bit segment 2
  217. * @{
  218. */
  219. #define CAN_BS2_1TQ 0x00000000U /*!< 1 time quantum */
  220. #define CAN_BS2_2TQ ((uint32_t)CAN_BTR_TS2_0) /*!< 2 time quantum */
  221. #define CAN_BS2_3TQ ((uint32_t)CAN_BTR_TS2_1) /*!< 3 time quantum */
  222. #define CAN_BS2_4TQ ((uint32_t)(CAN_BTR_TS2_1 | CAN_BTR_TS2_0)) /*!< 4 time quantum */
  223. #define CAN_BS2_5TQ ((uint32_t)CAN_BTR_TS2_2) /*!< 5 time quantum */
  224. #define CAN_BS2_6TQ ((uint32_t)(CAN_BTR_TS2_2 | CAN_BTR_TS2_0)) /*!< 6 time quantum */
  225. #define CAN_BS2_7TQ ((uint32_t)(CAN_BTR_TS2_2 | CAN_BTR_TS2_1)) /*!< 7 time quantum */
  226. #define CAN_BS2_8TQ ((uint32_t)CAN_BTR_TS2) /*!< 8 time quantum */
  227. /**
  228. * @}
  229. */
  230. /** @defgroup CAN_filter_mode CAN Filter Mode
  231. * @{
  232. */
  233. #define CAN_FILTERMODE_IDMASK ((uint8_t)0x00) /*!< Identifier mask mode */
  234. #define CAN_FILTERMODE_IDLIST ((uint8_t)0x01) /*!< Identifier list mode */
  235. /**
  236. * @}
  237. */
  238. /** @defgroup CAN_filter_scale CAN Filter Scale
  239. * @{
  240. */
  241. #define CAN_FILTERSCALE_16BIT ((uint8_t)0x00) /*!< Two 16-bit filters */
  242. #define CAN_FILTERSCALE_32BIT ((uint8_t)0x01) /*!< One 32-bit filter */
  243. /**
  244. * @}
  245. */
  246. /** @defgroup CAN_filter_FIFO CAN Filter FIFO
  247. * @{
  248. */
  249. #define CAN_FILTER_FIFO0 ((uint8_t)0x00) /*!< Filter FIFO 0 assignment for filter x */
  250. #define CAN_FILTER_FIFO1 ((uint8_t)0x01) /*!< Filter FIFO 1 assignment for filter x */
  251. /**
  252. * @}
  253. */
  254. /** @defgroup CAN_Identifier_Type CAN Identifier Type
  255. * @{
  256. */
  257. #define CAN_ID_STD 0x00000000U /*!< Standard Id */
  258. #define CAN_ID_EXT 0x00000004U /*!< Extended Id */
  259. /**
  260. * @}
  261. */
  262. /** @defgroup CAN_remote_transmission_request CAN Remote Transmission Request
  263. * @{
  264. */
  265. #define CAN_RTR_DATA 0x00000000U /*!< Data frame */
  266. #define CAN_RTR_REMOTE 0x00000002U /*!< Remote frame */
  267. /**
  268. * @}
  269. */
  270. /** @defgroup CAN_transmit_constants CAN Transmit Constants
  271. * @{
  272. */
  273. #define CAN_TXSTATUS_NOMAILBOX ((uint8_t)0x04) /*!< CAN cell did not provide CAN_TxStatus_NoMailBox */
  274. /**
  275. * @}
  276. */
  277. /** @defgroup CAN_receive_FIFO_number_constants CAN Receive FIFO Number
  278. * @{
  279. */
  280. #define CAN_FIFO0 ((uint8_t)0x00) /*!< CAN FIFO 0 used to receive */
  281. #define CAN_FIFO1 ((uint8_t)0x01) /*!< CAN FIFO 1 used to receive */
  282. /**
  283. * @}
  284. */
  285. /** @defgroup CAN_flags CAN Flags
  286. * @{
  287. */
  288. /* If the flag is 0x3XXXXXXX, it means that it can be used with CAN_GetFlagStatus()
  289. and CAN_ClearFlag() functions. */
  290. /* If the flag is 0x1XXXXXXX, it means that it can only be used with
  291. CAN_GetFlagStatus() function. */
  292. /* Transmit Flags */
  293. #define CAN_FLAG_RQCP0 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_RQCP0_BIT_POSITION)) /*!< Request MailBox0 flag */
  294. #define CAN_FLAG_RQCP1 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_RQCP1_BIT_POSITION)) /*!< Request MailBox1 flag */
  295. #define CAN_FLAG_RQCP2 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_RQCP2_BIT_POSITION)) /*!< Request MailBox2 flag */
  296. #define CAN_FLAG_TXOK0 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TXOK0_BIT_POSITION)) /*!< Transmission OK MailBox0 flag */
  297. #define CAN_FLAG_TXOK1 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TXOK1_BIT_POSITION)) /*!< Transmission OK MailBox1 flag */
  298. #define CAN_FLAG_TXOK2 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TXOK2_BIT_POSITION)) /*!< Transmission OK MailBox2 flag */
  299. #define CAN_FLAG_TME0 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TME0_BIT_POSITION)) /*!< Transmit mailbox 0 empty flag */
  300. #define CAN_FLAG_TME1 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TME1_BIT_POSITION)) /*!< Transmit mailbox 0 empty flag */
  301. #define CAN_FLAG_TME2 ((uint32_t)((TSR_REGISTER_INDEX << 8U) | CAN_TSR_TME2_BIT_POSITION)) /*!< Transmit mailbox 0 empty flag */
  302. /* Receive Flags */
  303. #define CAN_FLAG_FF0 ((uint32_t)((RF0R_REGISTER_INDEX << 8U) | CAN_RF0R_FF0_BIT_POSITION)) /*!< FIFO 0 Full flag */
  304. #define CAN_FLAG_FOV0 ((uint32_t)((RF0R_REGISTER_INDEX << 8U) | CAN_RF0R_FOV0_BIT_POSITION)) /*!< FIFO 0 Overrun flag */
  305. #define CAN_FLAG_FF1 ((uint32_t)((RF1R_REGISTER_INDEX << 8U) | CAN_RF1R_FF1_BIT_POSITION)) /*!< FIFO 1 Full flag */
  306. #define CAN_FLAG_FOV1 ((uint32_t)((RF1R_REGISTER_INDEX << 8U) | CAN_RF1R_FOV1_BIT_POSITION)) /*!< FIFO 1 Overrun flag */
  307. /* Operating Mode Flags */
  308. #define CAN_FLAG_WKU ((uint32_t)((MSR_REGISTER_INDEX << 8U) | CAN_MSR_WKU_BIT_POSITION)) /*!< Wake up flag */
  309. #define CAN_FLAG_SLAK ((uint32_t)((MSR_REGISTER_INDEX << 8U) | CAN_MSR_SLAK_BIT_POSITION)) /*!< Sleep acknowledge flag */
  310. #define CAN_FLAG_SLAKI ((uint32_t)((MSR_REGISTER_INDEX << 8U) | CAN_MSR_SLAKI_BIT_POSITION)) /*!< Sleep acknowledge flag */
  311. /* @note When SLAK interrupt is disabled (SLKIE=0), no polling on SLAKI is possible.
  312. In this case the SLAK bit can be polled.*/
  313. /* Error Flags */
  314. #define CAN_FLAG_EWG ((uint32_t)((ESR_REGISTER_INDEX << 8U) | CAN_ESR_EWG_BIT_POSITION)) /*!< Error warning flag */
  315. #define CAN_FLAG_EPV ((uint32_t)((ESR_REGISTER_INDEX << 8U) | CAN_ESR_EPV_BIT_POSITION)) /*!< Error passive flag */
  316. #define CAN_FLAG_BOF ((uint32_t)((ESR_REGISTER_INDEX << 8U) | CAN_ESR_BOF_BIT_POSITION)) /*!< Bus-Off flag */
  317. /**
  318. * @}
  319. */
  320. /** @defgroup CAN_Interrupts CAN Interrupts
  321. * @{
  322. */
  323. #define CAN_IT_TME ((uint32_t)CAN_IER_TMEIE) /*!< Transmit mailbox empty interrupt */
  324. /* Receive Interrupts */
  325. #define CAN_IT_FMP0 ((uint32_t)CAN_IER_FMPIE0) /*!< FIFO 0 message pending interrupt */
  326. #define CAN_IT_FF0 ((uint32_t)CAN_IER_FFIE0) /*!< FIFO 0 full interrupt */
  327. #define CAN_IT_FOV0 ((uint32_t)CAN_IER_FOVIE0) /*!< FIFO 0 overrun interrupt */
  328. #define CAN_IT_FMP1 ((uint32_t)CAN_IER_FMPIE1) /*!< FIFO 1 message pending interrupt */
  329. #define CAN_IT_FF1 ((uint32_t)CAN_IER_FFIE1) /*!< FIFO 1 full interrupt */
  330. #define CAN_IT_FOV1 ((uint32_t)CAN_IER_FOVIE1) /*!< FIFO 1 overrun interrupt */
  331. /* Operating Mode Interrupts */
  332. #define CAN_IT_WKU ((uint32_t)CAN_IER_WKUIE) /*!< Wake-up interrupt */
  333. #define CAN_IT_SLK ((uint32_t)CAN_IER_SLKIE) /*!< Sleep acknowledge interrupt */
  334. /* Error Interrupts */
  335. #define CAN_IT_EWG ((uint32_t)CAN_IER_EWGIE) /*!< Error warning interrupt */
  336. #define CAN_IT_EPV ((uint32_t)CAN_IER_EPVIE) /*!< Error passive interrupt */
  337. #define CAN_IT_BOF ((uint32_t)CAN_IER_BOFIE) /*!< Bus-off interrupt */
  338. #define CAN_IT_LEC ((uint32_t)CAN_IER_LECIE) /*!< Last error code interrupt */
  339. #define CAN_IT_ERR ((uint32_t)CAN_IER_ERRIE) /*!< Error Interrupt */
  340. /**
  341. * @}
  342. */
  343. /**
  344. * @}
  345. */
  346. /** @defgroup CAN_Private_Constants CAN Private Constants
  347. * @{
  348. */
  349. /* CAN intermediate shift values used for CAN flags */
  350. #define TSR_REGISTER_INDEX 0x5U
  351. #define RF0R_REGISTER_INDEX 0x2U
  352. #define RF1R_REGISTER_INDEX 0x4U
  353. #define MSR_REGISTER_INDEX 0x1U
  354. #define ESR_REGISTER_INDEX 0x3U
  355. /* CAN flags bits position into their respective register (TSR, RF0R, RF1R or MSR registers) */
  356. /* Transmit Flags */
  357. #define CAN_TSR_RQCP0_BIT_POSITION 0x00000000U
  358. #define CAN_TSR_RQCP1_BIT_POSITION 0x00000008U
  359. #define CAN_TSR_RQCP2_BIT_POSITION 0x00000010U
  360. #define CAN_TSR_TXOK0_BIT_POSITION 0x00000001U
  361. #define CAN_TSR_TXOK1_BIT_POSITION 0x00000009U
  362. #define CAN_TSR_TXOK2_BIT_POSITION 0x00000011U
  363. #define CAN_TSR_TME0_BIT_POSITION 0x0000001AU
  364. #define CAN_TSR_TME1_BIT_POSITION 0x0000001BU
  365. #define CAN_TSR_TME2_BIT_POSITION 0x0000001CU
  366. /* Receive Flags */
  367. #define CAN_RF0R_FF0_BIT_POSITION 0x00000003U
  368. #define CAN_RF0R_FOV0_BIT_POSITION 0x00000004U
  369. #define CAN_RF1R_FF1_BIT_POSITION 0x00000003U
  370. #define CAN_RF1R_FOV1_BIT_POSITION 0x00000004U
  371. /* Operating Mode Flags */
  372. #define CAN_MSR_WKU_BIT_POSITION 0x00000003U
  373. #define CAN_MSR_SLAK_BIT_POSITION 0x00000001U
  374. #define CAN_MSR_SLAKI_BIT_POSITION 0x00000004U
  375. /* Error Flags */
  376. #define CAN_ESR_EWG_BIT_POSITION 0x00000000U
  377. #define CAN_ESR_EPV_BIT_POSITION 0x00000001U
  378. #define CAN_ESR_BOF_BIT_POSITION 0x00000002U
  379. /* Mask used by macro to get/clear CAN flags*/
  380. #define CAN_FLAG_MASK 0x000000FFU
  381. /* Mailboxes definition */
  382. #define CAN_TXMAILBOX_0 ((uint8_t)0x00)
  383. #define CAN_TXMAILBOX_1 ((uint8_t)0x01)
  384. #define CAN_TXMAILBOX_2 ((uint8_t)0x02)
  385. /**
  386. * @}
  387. */
  388. /* Exported macros -----------------------------------------------------------*/
  389. /** @defgroup CAN_Exported_Macros CAN Exported Macros
  390. * @{
  391. */
  392. /** @brief Reset CAN handle state
  393. * @param __HANDLE__: CAN handle.
  394. * @retval None
  395. */
  396. #define __HAL_CAN_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CAN_STATE_RESET)
  397. /**
  398. * @brief Enable the specified CAN interrupts
  399. * @param __HANDLE__: CAN handle.
  400. * @param __INTERRUPT__: CAN Interrupt.
  401. * This parameter can be one of the following values:
  402. * @arg CAN_IT_TME: Transmit mailbox empty interrupt enable
  403. * @arg CAN_IT_FMP0: FIFO 0 message pending interrupt
  404. * @arg CAN_IT_FF0 : FIFO 0 full interrupt
  405. * @arg CAN_IT_FOV0: FIFO 0 overrun interrupt
  406. * @arg CAN_IT_FMP1: FIFO 1 message pending interrupt
  407. * @arg CAN_IT_FF1 : FIFO 1 full interrupt
  408. * @arg CAN_IT_FOV1: FIFO 1 overrun interrupt
  409. * @arg CAN_IT_WKU : Wake-up interrupt
  410. * @arg CAN_IT_SLK : Sleep acknowledge interrupt
  411. * @arg CAN_IT_EWG : Error warning interrupt
  412. * @arg CAN_IT_EPV : Error passive interrupt
  413. * @arg CAN_IT_BOF : Bus-off interrupt
  414. * @arg CAN_IT_LEC : Last error code interrupt
  415. * @arg CAN_IT_ERR : Error Interrupt
  416. * @retval None.
  417. */
  418. #define __HAL_CAN_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IER) |= (__INTERRUPT__))
  419. /**
  420. * @brief Disable the specified CAN interrupts
  421. * @param __HANDLE__: CAN handle.
  422. * @param __INTERRUPT__: CAN Interrupt.
  423. * This parameter can be one of the following values:
  424. * @arg CAN_IT_TME: Transmit mailbox empty interrupt enable
  425. * @arg CAN_IT_FMP0: FIFO 0 message pending interrupt
  426. * @arg CAN_IT_FF0 : FIFO 0 full interrupt
  427. * @arg CAN_IT_FOV0: FIFO 0 overrun interrupt
  428. * @arg CAN_IT_FMP1: FIFO 1 message pending interrupt
  429. * @arg CAN_IT_FF1 : FIFO 1 full interrupt
  430. * @arg CAN_IT_FOV1: FIFO 1 overrun interrupt
  431. * @arg CAN_IT_WKU : Wake-up interrupt
  432. * @arg CAN_IT_SLK : Sleep acknowledge interrupt
  433. * @arg CAN_IT_EWG : Error warning interrupt
  434. * @arg CAN_IT_EPV : Error passive interrupt
  435. * @arg CAN_IT_BOF : Bus-off interrupt
  436. * @arg CAN_IT_LEC : Last error code interrupt
  437. * @arg CAN_IT_ERR : Error Interrupt
  438. * @retval None.
  439. */
  440. #define __HAL_CAN_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IER) &= ~(__INTERRUPT__))
  441. /**
  442. * @brief Return the number of pending received messages.
  443. * @param __HANDLE__: CAN handle.
  444. * @param __FIFONUMBER__: Receive FIFO number, CAN_FIFO0 or CAN_FIFO1.
  445. * @retval The number of pending message.
  446. */
  447. #define __HAL_CAN_MSG_PENDING(__HANDLE__, __FIFONUMBER__) (((__FIFONUMBER__) == CAN_FIFO0)? \
  448. ((uint8_t)((__HANDLE__)->Instance->RF0R & 0x03U)) : ((uint8_t)((__HANDLE__)->Instance->RF1R & 0x03U)))
  449. /** @brief Check whether the specified CAN flag is set or not.
  450. * @param __HANDLE__: specifies the CAN Handle.
  451. * @param __FLAG__: specifies the flag to check.
  452. * This parameter can be one of the following values:
  453. * @arg CAN_TSR_RQCP0: Request MailBox0 Flag
  454. * @arg CAN_TSR_RQCP1: Request MailBox1 Flag
  455. * @arg CAN_TSR_RQCP2: Request MailBox2 Flag
  456. * @arg CAN_FLAG_TXOK0: Transmission OK MailBox0 Flag
  457. * @arg CAN_FLAG_TXOK1: Transmission OK MailBox1 Flag
  458. * @arg CAN_FLAG_TXOK2: Transmission OK MailBox2 Flag
  459. * @arg CAN_FLAG_TME0: Transmit mailbox 0 empty Flag
  460. * @arg CAN_FLAG_TME1: Transmit mailbox 1 empty Flag
  461. * @arg CAN_FLAG_TME2: Transmit mailbox 2 empty Flag
  462. * @arg CAN_FLAG_FMP0: FIFO 0 Message Pending Flag
  463. * @arg CAN_FLAG_FF0: FIFO 0 Full Flag
  464. * @arg CAN_FLAG_FOV0: FIFO 0 Overrun Flag
  465. * @arg CAN_FLAG_FMP1: FIFO 1 Message Pending Flag
  466. * @arg CAN_FLAG_FF1: FIFO 1 Full Flag
  467. * @arg CAN_FLAG_FOV1: FIFO 1 Overrun Flag
  468. * @arg CAN_FLAG_WKU: Wake up Flag
  469. * @arg CAN_FLAG_SLAK: Sleep acknowledge Flag
  470. * @arg CAN_FLAG_SLAKI: Sleep acknowledge Flag
  471. * @arg CAN_FLAG_EWG: Error Warning Flag
  472. * @arg CAN_FLAG_EPV: Error Passive Flag
  473. * @arg CAN_FLAG_BOF: Bus-Off Flag
  474. * @retval The new state of __FLAG__ (TRUE or FALSE).
  475. */
  476. #define __HAL_CAN_GET_FLAG(__HANDLE__, __FLAG__) \
  477. ((((__FLAG__) >> 8U) == 5U)? ((((__HANDLE__)->Instance->TSR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  478. (((__FLAG__) >> 8U) == 2U)? ((((__HANDLE__)->Instance->RF0R) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  479. (((__FLAG__) >> 8U) == 4U)? ((((__HANDLE__)->Instance->RF1R) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  480. (((__FLAG__) >> 8U) == 1U)? ((((__HANDLE__)->Instance->MSR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  481. ((((__HANDLE__)->Instance->ESR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))))
  482. /** @brief Clear the specified CAN pending flag.
  483. * @param __HANDLE__: specifies the CAN Handle.
  484. * @param __FLAG__: specifies the flag to check.
  485. * This parameter can be one of the following values:
  486. * @arg CAN_TSR_RQCP0: Request MailBox0 Flag
  487. * @arg CAN_TSR_RQCP1: Request MailBox1 Flag
  488. * @arg CAN_TSR_RQCP2: Request MailBox2 Flag
  489. * @arg CAN_FLAG_TXOK0: Transmission OK MailBox0 Flag
  490. * @arg CAN_FLAG_TXOK1: Transmission OK MailBox1 Flag
  491. * @arg CAN_FLAG_TXOK2: Transmission OK MailBox2 Flag
  492. * @arg CAN_FLAG_TME0: Transmit mailbox 0 empty Flag
  493. * @arg CAN_FLAG_TME1: Transmit mailbox 1 empty Flag
  494. * @arg CAN_FLAG_TME2: Transmit mailbox 2 empty Flag
  495. * @arg CAN_FLAG_FMP0: FIFO 0 Message Pending Flag
  496. * @arg CAN_FLAG_FF0: FIFO 0 Full Flag
  497. * @arg CAN_FLAG_FOV0: FIFO 0 Overrun Flag
  498. * @arg CAN_FLAG_FMP1: FIFO 1 Message Pending Flag
  499. * @arg CAN_FLAG_FF1: FIFO 1 Full Flag
  500. * @arg CAN_FLAG_FOV1: FIFO 1 Overrun Flag
  501. * @arg CAN_FLAG_WKU: Wake up Flag
  502. * @arg CAN_FLAG_SLAKI: Sleep acknowledge Flag
  503. * @retval The new state of __FLAG__ (TRUE or FALSE).
  504. */
  505. #define __HAL_CAN_CLEAR_FLAG(__HANDLE__, __FLAG__) \
  506. ((((__FLAG__) >> 8U) == TSR_REGISTER_INDEX) ? (((__HANDLE__)->Instance->TSR) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  507. (((__FLAG__) >> 8U) == RF0R_REGISTER_INDEX)? (((__HANDLE__)->Instance->RF0R) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  508. (((__FLAG__) >> 8U) == RF1R_REGISTER_INDEX)? (((__HANDLE__)->Instance->RF1R) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  509. (((__FLAG__) >> 8U) == MSR_REGISTER_INDEX) ? (((__HANDLE__)->Instance->MSR) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): 0U)
  510. /** @brief Check if the specified CAN interrupt source is enabled or disabled.
  511. * @param __HANDLE__: specifies the CAN Handle.
  512. * @param __INTERRUPT__: specifies the CAN interrupt source to check.
  513. * This parameter can be one of the following values:
  514. * @arg CAN_IT_TME: Transmit mailbox empty interrupt enable
  515. * @arg CAN_IT_FMP0: FIFO 0 message pending interrupt
  516. * @arg CAN_IT_FF0 : FIFO 0 full interrupt
  517. * @arg CAN_IT_FOV0: FIFO 0 overrun interrupt
  518. * @arg CAN_IT_FMP1: FIFO 1 message pending interrupt
  519. * @arg CAN_IT_FF1 : FIFO 1 full interrupt
  520. * @arg CAN_IT_FOV1: FIFO 1 overrun interrupt
  521. * @arg CAN_IT_WKU : Wake-up interrupt
  522. * @arg CAN_IT_SLK : Sleep acknowledge interrupt
  523. * @arg CAN_IT_EWG : Error warning interrupt
  524. * @arg CAN_IT_EPV : Error passive interrupt
  525. * @arg CAN_IT_BOF : Bus-off interrupt
  526. * @arg CAN_IT_LEC : Last error code interrupt
  527. * @arg CAN_IT_ERR : Error Interrupt
  528. * @retval The new state of __IT__ (TRUE or FALSE).
  529. */
  530. #define __HAL_CAN_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->IER & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  531. /**
  532. * @brief Check the transmission status of a CAN Frame.
  533. * @param __HANDLE__: specifies the CAN Handle.
  534. * @param __TRANSMITMAILBOX__: the number of the mailbox that is used for transmission.
  535. * @retval The new status of transmission (TRUE or FALSE).
  536. */
  537. #define __HAL_CAN_TRANSMIT_STATUS(__HANDLE__, __TRANSMITMAILBOX__)\
  538. (((__TRANSMITMAILBOX__) == CAN_TXMAILBOX_0)? ((((__HANDLE__)->Instance->TSR) & (CAN_TSR_RQCP0 | CAN_TSR_TME0)) == (CAN_TSR_RQCP0 | CAN_TSR_TME0)) :\
  539. ((__TRANSMITMAILBOX__) == CAN_TXMAILBOX_1)? ((((__HANDLE__)->Instance->TSR) & (CAN_TSR_RQCP1 | CAN_TSR_TME1)) == (CAN_TSR_RQCP1 | CAN_TSR_TME1)) :\
  540. ((((__HANDLE__)->Instance->TSR) & (CAN_TSR_RQCP2 | CAN_TSR_TME2)) == (CAN_TSR_RQCP2 | CAN_TSR_TME2)))
  541. /**
  542. * @brief Release the specified receive FIFO.
  543. * @param __HANDLE__: CAN handle.
  544. * @param __FIFONUMBER__: Receive FIFO number, CAN_FIFO0 or CAN_FIFO1.
  545. * @retval None.
  546. */
  547. #define __HAL_CAN_FIFO_RELEASE(__HANDLE__, __FIFONUMBER__) (((__FIFONUMBER__) == CAN_FIFO0)? \
  548. ((__HANDLE__)->Instance->RF0R = CAN_RF0R_RFOM0) : ((__HANDLE__)->Instance->RF1R = CAN_RF1R_RFOM1))
  549. /**
  550. * @brief Cancel a transmit request.
  551. * @param __HANDLE__: specifies the CAN Handle.
  552. * @param __TRANSMITMAILBOX__: the number of the mailbox that is used for transmission.
  553. * @retval None.
  554. */
  555. #define __HAL_CAN_CANCEL_TRANSMIT(__HANDLE__, __TRANSMITMAILBOX__)\
  556. (((__TRANSMITMAILBOX__) == CAN_TXMAILBOX_0)? ((__HANDLE__)->Instance->TSR = CAN_TSR_ABRQ0) :\
  557. ((__TRANSMITMAILBOX__) == CAN_TXMAILBOX_1)? ((__HANDLE__)->Instance->TSR = CAN_TSR_ABRQ1) :\
  558. ((__HANDLE__)->Instance->TSR = CAN_TSR_ABRQ2))
  559. /**
  560. * @brief Enable or disables the DBG Freeze for CAN.
  561. * @param __HANDLE__: specifies the CAN Handle.
  562. * @param __NEWSTATE__: new state of the CAN peripheral.
  563. * This parameter can be: ENABLE (CAN reception/transmission is frozen
  564. * during debug. Reception FIFOs can still be accessed/controlled normally)
  565. * or DISABLE (CAN is working during debug).
  566. * @retval None
  567. */
  568. #define __HAL_CAN_DBG_FREEZE(__HANDLE__, __NEWSTATE__) (((__NEWSTATE__) == ENABLE)? \
  569. ((__HANDLE__)->Instance->MCR |= CAN_MCR_DBF) : ((__HANDLE__)->Instance->MCR &= ~CAN_MCR_DBF))
  570. /**
  571. * @}
  572. */
  573. /* Include CAN HAL Extension module */
  574. #include "stm32f1xx_hal_can_ex_legacy.h"
  575. /* Exported functions --------------------------------------------------------*/
  576. /** @addtogroup CAN_Exported_Functions
  577. * @{
  578. */
  579. /** @addtogroup CAN_Exported_Functions_Group1
  580. * @brief Initialization and Configuration functions
  581. * @{
  582. */
  583. /* Initialization and de-initialization functions *****************************/
  584. HAL_StatusTypeDef HAL_CAN_Init(CAN_HandleTypeDef* hcan);
  585. HAL_StatusTypeDef HAL_CAN_ConfigFilter(CAN_HandleTypeDef* hcan, CAN_FilterConfTypeDef* sFilterConfig);
  586. HAL_StatusTypeDef HAL_CAN_DeInit(CAN_HandleTypeDef* hcan);
  587. void HAL_CAN_MspInit(CAN_HandleTypeDef* hcan);
  588. void HAL_CAN_MspDeInit(CAN_HandleTypeDef* hcan);
  589. /**
  590. * @}
  591. */
  592. /** @addtogroup CAN_Exported_Functions_Group2
  593. * @brief I/O operation functions
  594. * @{
  595. */
  596. /* I/O operation functions *****************************************************/
  597. HAL_StatusTypeDef HAL_CAN_Transmit(CAN_HandleTypeDef *hcan, uint32_t Timeout);
  598. HAL_StatusTypeDef HAL_CAN_Transmit_IT(CAN_HandleTypeDef *hcan);
  599. HAL_StatusTypeDef HAL_CAN_Receive(CAN_HandleTypeDef *hcan, uint8_t FIFONumber, uint32_t Timeout);
  600. HAL_StatusTypeDef HAL_CAN_Receive_IT(CAN_HandleTypeDef *hcan, uint8_t FIFONumber);
  601. HAL_StatusTypeDef HAL_CAN_Sleep(CAN_HandleTypeDef *hcan);
  602. HAL_StatusTypeDef HAL_CAN_WakeUp(CAN_HandleTypeDef *hcan);
  603. void HAL_CAN_IRQHandler(CAN_HandleTypeDef* hcan);
  604. void HAL_CAN_TxCpltCallback(CAN_HandleTypeDef* hcan);
  605. void HAL_CAN_RxCpltCallback(CAN_HandleTypeDef* hcan);
  606. void HAL_CAN_ErrorCallback(CAN_HandleTypeDef *hcan);
  607. /**
  608. * @}
  609. */
  610. /** @addtogroup CAN_Exported_Functions_Group3
  611. * @brief CAN Peripheral State functions
  612. * @{
  613. */
  614. /* Peripheral State and Error functions ***************************************/
  615. uint32_t HAL_CAN_GetError(CAN_HandleTypeDef *hcan);
  616. HAL_CAN_StateTypeDef HAL_CAN_GetState(CAN_HandleTypeDef* hcan);
  617. /**
  618. * @}
  619. */
  620. /**
  621. * @}
  622. */
  623. /* Private macros --------------------------------------------------------*/
  624. /** @defgroup CAN_Private_Macros CAN Private Macros
  625. * @{
  626. */
  627. #define IS_CAN_MODE(MODE) (((MODE) == CAN_MODE_NORMAL) || \
  628. ((MODE) == CAN_MODE_LOOPBACK)|| \
  629. ((MODE) == CAN_MODE_SILENT) || \
  630. ((MODE) == CAN_MODE_SILENT_LOOPBACK))
  631. #define IS_CAN_SJW(SJW) (((SJW) == CAN_SJW_1TQ) || ((SJW) == CAN_SJW_2TQ)|| \
  632. ((SJW) == CAN_SJW_3TQ) || ((SJW) == CAN_SJW_4TQ))
  633. #define IS_CAN_BS1(BS1) ((BS1) <= CAN_BS1_16TQ)
  634. #define IS_CAN_BS2(BS2) ((BS2) <= CAN_BS2_8TQ)
  635. #define IS_CAN_PRESCALER(PRESCALER) (((PRESCALER) >= 1U) && ((PRESCALER) <= 1024U))
  636. #define IS_CAN_FILTER_MODE(MODE) (((MODE) == CAN_FILTERMODE_IDMASK) || \
  637. ((MODE) == CAN_FILTERMODE_IDLIST))
  638. #define IS_CAN_FILTER_SCALE(SCALE) (((SCALE) == CAN_FILTERSCALE_16BIT) || \
  639. ((SCALE) == CAN_FILTERSCALE_32BIT))
  640. #define IS_CAN_FILTER_FIFO(FIFO) (((FIFO) == CAN_FILTER_FIFO0) || \
  641. ((FIFO) == CAN_FILTER_FIFO1))
  642. #define IS_CAN_BANKNUMBER(BANKNUMBER) ((BANKNUMBER) <= 28U)
  643. #define IS_CAN_TRANSMITMAILBOX(TRANSMITMAILBOX) ((TRANSMITMAILBOX) <= ((uint8_t)0x02))
  644. #define IS_CAN_STDID(STDID) ((STDID) <= 0x00007FFU)
  645. #define IS_CAN_EXTID(EXTID) ((EXTID) <= 0x1FFFFFFFU)
  646. #define IS_CAN_DLC(DLC) ((DLC) <= ((uint8_t)0x08))
  647. #define IS_CAN_IDTYPE(IDTYPE) (((IDTYPE) == CAN_ID_STD) || \
  648. ((IDTYPE) == CAN_ID_EXT))
  649. #define IS_CAN_RTR(RTR) (((RTR) == CAN_RTR_DATA) || ((RTR) == CAN_RTR_REMOTE))
  650. #define IS_CAN_FIFO(FIFO) (((FIFO) == CAN_FIFO0) || ((FIFO) == CAN_FIFO1))
  651. /**
  652. * @}
  653. */
  654. /**
  655. * @}
  656. */
  657. /**
  658. * @}
  659. */
  660. #endif /* STM32F103x6) || STM32F103xB || STM32F103xE || STM32F103xG) || STM32F105xC || STM32F107xC */
  661. #ifdef __cplusplus
  662. }
  663. #endif
  664. #endif /* __STM32F1xx_HAL_CAN_LEGACY_H */