stm32l4xx_hal_can_legacy.h 33 KB

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