stm32l4xx_hal_can.h 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. /**
  2. ******************************************************************************
  3. * @file stm32l4xx_hal_can.h
  4. * @author MCD Application Team
  5. * @brief Header file of CAN HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification,
  12. * are permitted provided that the following conditions are met:
  13. * 1. Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  25. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  28. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  29. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  30. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. *
  33. ******************************************************************************
  34. */
  35. /* Define to prevent recursive inclusion -------------------------------------*/
  36. #ifndef STM32L4xx_HAL_CAN_H
  37. #define STM32L4xx_HAL_CAN_H
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /* Includes ------------------------------------------------------------------*/
  42. #include "stm32l4xx_hal_def.h"
  43. /** @addtogroup STM32L4xx_HAL_Driver
  44. * @{
  45. */
  46. #if defined (CAN1)
  47. /** @addtogroup CAN
  48. * @{
  49. */
  50. /* Exported types ------------------------------------------------------------*/
  51. /** @defgroup CAN_Exported_Types CAN Exported Types
  52. * @{
  53. */
  54. /**
  55. * @brief HAL State structures definition
  56. */
  57. typedef enum
  58. {
  59. HAL_CAN_STATE_RESET = 0x00U, /*!< CAN not yet initialized or disabled */
  60. HAL_CAN_STATE_READY = 0x01U, /*!< CAN initialized and ready for use */
  61. HAL_CAN_STATE_LISTENING = 0x02U, /*!< CAN receive process is ongoing */
  62. HAL_CAN_STATE_SLEEP_PENDING = 0x03U, /*!< CAN sleep request is pending */
  63. HAL_CAN_STATE_SLEEP_ACTIVE = 0x04U, /*!< CAN sleep mode is active */
  64. HAL_CAN_STATE_ERROR = 0x05U /*!< CAN error state */
  65. } HAL_CAN_StateTypeDef;
  66. /**
  67. * @brief CAN init structure definition
  68. */
  69. typedef struct
  70. {
  71. uint32_t Prescaler; /*!< Specifies the length of a time quantum.
  72. This parameter must be a number between Min_Data = 1 and Max_Data = 1024. */
  73. uint32_t Mode; /*!< Specifies the CAN operating mode.
  74. This parameter can be a value of @ref CAN_operating_mode */
  75. uint32_t SyncJumpWidth; /*!< Specifies the maximum number of time quanta the CAN hardware
  76. is allowed to lengthen or shorten a bit to perform resynchronization.
  77. This parameter can be a value of @ref CAN_synchronisation_jump_width */
  78. uint32_t TimeSeg1; /*!< Specifies the number of time quanta in Bit Segment 1.
  79. This parameter can be a value of @ref CAN_time_quantum_in_bit_segment_1 */
  80. uint32_t TimeSeg2; /*!< Specifies the number of time quanta in Bit Segment 2.
  81. This parameter can be a value of @ref CAN_time_quantum_in_bit_segment_2 */
  82. FunctionalState TimeTriggeredMode; /*!< Enable or disable the time triggered communication mode.
  83. This parameter can be set to ENABLE or DISABLE. */
  84. FunctionalState AutoBusOff; /*!< Enable or disable the automatic bus-off management.
  85. This parameter can be set to ENABLE or DISABLE. */
  86. FunctionalState AutoWakeUp; /*!< Enable or disable the automatic wake-up mode.
  87. This parameter can be set to ENABLE or DISABLE. */
  88. FunctionalState AutoRetransmission; /*!< Enable or disable the non-automatic retransmission mode.
  89. This parameter can be set to ENABLE or DISABLE. */
  90. FunctionalState ReceiveFifoLocked; /*!< Enable or disable the Receive FIFO Locked mode.
  91. This parameter can be set to ENABLE or DISABLE. */
  92. FunctionalState TransmitFifoPriority;/*!< Enable or disable the transmit FIFO priority.
  93. This parameter can be set to ENABLE or DISABLE. */
  94. } CAN_InitTypeDef;
  95. /**
  96. * @brief CAN filter configuration structure definition
  97. */
  98. typedef struct
  99. {
  100. uint32_t FilterIdHigh; /*!< Specifies the filter identification number (MSBs for a 32-bit
  101. configuration, first one for a 16-bit configuration).
  102. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */
  103. uint32_t FilterIdLow; /*!< Specifies the filter identification number (LSBs for a 32-bit
  104. configuration, second one for a 16-bit configuration).
  105. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */
  106. uint32_t FilterMaskIdHigh; /*!< Specifies the filter mask number or identification number,
  107. according to the mode (MSBs for a 32-bit configuration,
  108. first one for a 16-bit configuration).
  109. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */
  110. uint32_t FilterMaskIdLow; /*!< Specifies the filter mask number or identification number,
  111. according to the mode (LSBs for a 32-bit configuration,
  112. second one for a 16-bit configuration).
  113. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */
  114. uint32_t FilterFIFOAssignment; /*!< Specifies the FIFO (0 or 1U) which will be assigned to the filter.
  115. This parameter can be a value of @ref CAN_filter_FIFO */
  116. uint32_t FilterBank; /*!< Specifies the filter bank which will be initialized.
  117. For single CAN instance(14 dedicated filter banks),
  118. this parameter must be a number between Min_Data = 0 and Max_Data = 13.
  119. For dual CAN instances(28 filter banks shared),
  120. this parameter must be a number between Min_Data = 0 and Max_Data = 27. */
  121. uint32_t FilterMode; /*!< Specifies the filter mode to be initialized.
  122. This parameter can be a value of @ref CAN_filter_mode */
  123. uint32_t FilterScale; /*!< Specifies the filter scale.
  124. This parameter can be a value of @ref CAN_filter_scale */
  125. uint32_t FilterActivation; /*!< Enable or disable the filter.
  126. This parameter can be set to ENABLE or DISABLE. */
  127. uint32_t SlaveStartFilterBank; /*!< Select the start filter bank for the slave CAN instance.
  128. For single CAN instances, this parameter is meaningless.
  129. For dual CAN instances, all filter banks with lower index are assigned to master
  130. CAN instance, whereas all filter banks with greater index are assigned to slave
  131. CAN instance.
  132. This parameter must be a number between Min_Data = 0 and Max_Data = 27. */
  133. } CAN_FilterTypeDef;
  134. /**
  135. * @brief CAN Tx message header structure definition
  136. */
  137. typedef struct
  138. {
  139. uint32_t StdId; /*!< Specifies the standard identifier.
  140. This parameter must be a number between Min_Data = 0 and Max_Data = 0x7FF. */
  141. uint32_t ExtId; /*!< Specifies the extended identifier.
  142. This parameter must be a number between Min_Data = 0 and Max_Data = 0x1FFFFFFF. */
  143. uint32_t IDE; /*!< Specifies the type of identifier for the message that will be transmitted.
  144. This parameter can be a value of @ref CAN_identifier_type */
  145. uint32_t RTR; /*!< Specifies the type of frame for the message that will be transmitted.
  146. This parameter can be a value of @ref CAN_remote_transmission_request */
  147. uint32_t DLC; /*!< Specifies the length of the frame that will be transmitted.
  148. This parameter must be a number between Min_Data = 0 and Max_Data = 8. */
  149. FunctionalState TransmitGlobalTime; /*!< Specifies whether the timestamp counter value captured on start
  150. of frame transmission, is sent in DATA6 and DATA7 replacing pData[6] and pData[7].
  151. @note: Time Triggered Communication Mode must be enabled.
  152. @note: DLC must be programmed as 8 bytes, in order these 2 bytes are sent.
  153. This parameter can be set to ENABLE or DISABLE. */
  154. } CAN_TxHeaderTypeDef;
  155. /**
  156. * @brief CAN Rx message header structure definition
  157. */
  158. typedef struct
  159. {
  160. uint32_t StdId; /*!< Specifies the standard identifier.
  161. This parameter must be a number between Min_Data = 0 and Max_Data = 0x7FF. */
  162. uint32_t ExtId; /*!< Specifies the extended identifier.
  163. This parameter must be a number between Min_Data = 0 and Max_Data = 0x1FFFFFFF. */
  164. uint32_t IDE; /*!< Specifies the type of identifier for the message that will be transmitted.
  165. This parameter can be a value of @ref CAN_identifier_type */
  166. uint32_t RTR; /*!< Specifies the type of frame for the message that will be transmitted.
  167. This parameter can be a value of @ref CAN_remote_transmission_request */
  168. uint32_t DLC; /*!< Specifies the length of the frame that will be transmitted.
  169. This parameter must be a number between Min_Data = 0 and Max_Data = 8. */
  170. uint32_t Timestamp; /*!< Specifies the timestamp counter value captured on start of frame reception.
  171. @note: Time Triggered Communication Mode must be enabled.
  172. This parameter must be a number between Min_Data = 0 and Max_Data = 0xFFFF. */
  173. uint32_t FilterMatchIndex; /*!< Specifies the index of matching acceptance filter element.
  174. This parameter must be a number between Min_Data = 0 and Max_Data = 0xFF. */
  175. } CAN_RxHeaderTypeDef;
  176. /**
  177. * @brief CAN handle Structure definition
  178. */
  179. typedef struct __CAN_HandleTypeDef
  180. {
  181. CAN_TypeDef *Instance; /*!< Register base address */
  182. CAN_InitTypeDef Init; /*!< CAN required parameters */
  183. __IO HAL_CAN_StateTypeDef State; /*!< CAN communication state */
  184. __IO uint32_t ErrorCode; /*!< CAN Error code.
  185. This parameter can be a value of @ref CAN_Error_Code */
  186. } CAN_HandleTypeDef;
  187. /**
  188. * @}
  189. */
  190. /* Exported constants --------------------------------------------------------*/
  191. /** @defgroup CAN_Exported_Constants CAN Exported Constants
  192. * @{
  193. */
  194. /** @defgroup CAN_Error_Code CAN Error Code
  195. * @{
  196. */
  197. #define HAL_CAN_ERROR_NONE (0x00000000U) /*!< No error */
  198. #define HAL_CAN_ERROR_EWG (0x00000001U) /*!< Protocol Error Warning */
  199. #define HAL_CAN_ERROR_EPV (0x00000002U) /*!< Error Passive */
  200. #define HAL_CAN_ERROR_BOF (0x00000004U) /*!< Bus-off error */
  201. #define HAL_CAN_ERROR_STF (0x00000008U) /*!< Stuff error */
  202. #define HAL_CAN_ERROR_FOR (0x00000010U) /*!< Form error */
  203. #define HAL_CAN_ERROR_ACK (0x00000020U) /*!< Acknowledgment error */
  204. #define HAL_CAN_ERROR_BR (0x00000040U) /*!< Bit recessive error */
  205. #define HAL_CAN_ERROR_BD (0x00000080U) /*!< Bit dominant error */
  206. #define HAL_CAN_ERROR_CRC (0x00000100U) /*!< CRC error */
  207. #define HAL_CAN_ERROR_RX_FOV0 (0x00000200U) /*!< Rx FIFO0 overrun error */
  208. #define HAL_CAN_ERROR_RX_FOV1 (0x00000400U) /*!< Rx FIFO1 overrun error */
  209. #define HAL_CAN_ERROR_TX_ALST0 (0x00000800U) /*!< TxMailbox 0 transmit failure due to arbitration lost */
  210. #define HAL_CAN_ERROR_TX_TERR0 (0x00001000U) /*!< TxMailbox 1 transmit failure due to tranmit error */
  211. #define HAL_CAN_ERROR_TX_ALST1 (0x00002000U) /*!< TxMailbox 0 transmit failure due to arbitration lost */
  212. #define HAL_CAN_ERROR_TX_TERR1 (0x00004000U) /*!< TxMailbox 1 transmit failure due to tranmit error */
  213. #define HAL_CAN_ERROR_TX_ALST2 (0x00008000U) /*!< TxMailbox 0 transmit failure due to arbitration lost */
  214. #define HAL_CAN_ERROR_TX_TERR2 (0x00010000U) /*!< TxMailbox 1 transmit failure due to tranmit error */
  215. #define HAL_CAN_ERROR_TIMEOUT (0x00020000U) /*!< Timeout error */
  216. #define HAL_CAN_ERROR_NOT_INITIALIZED (0x00040000U) /*!< Peripheral not initialized */
  217. #define HAL_CAN_ERROR_NOT_READY (0x00080000U) /*!< Peripheral not ready */
  218. #define HAL_CAN_ERROR_NOT_STARTED (0x00100000U) /*!< Peripheral not started */
  219. #define HAL_CAN_ERROR_PARAM (0x00200000U) /*!< Parameter error */
  220. /**
  221. * @}
  222. */
  223. /** @defgroup CAN_InitStatus CAN InitStatus
  224. * @{
  225. */
  226. #define CAN_INITSTATUS_FAILED (0x00000000U) /*!< CAN initialization failed */
  227. #define CAN_INITSTATUS_SUCCESS (0x00000001U) /*!< CAN initialization OK */
  228. /**
  229. * @}
  230. */
  231. /** @defgroup CAN_operating_mode CAN Operating Mode
  232. * @{
  233. */
  234. #define CAN_MODE_NORMAL (0x00000000U) /*!< Normal mode */
  235. #define CAN_MODE_LOOPBACK ((uint32_t)CAN_BTR_LBKM) /*!< Loopback mode */
  236. #define CAN_MODE_SILENT ((uint32_t)CAN_BTR_SILM) /*!< Silent mode */
  237. #define CAN_MODE_SILENT_LOOPBACK ((uint32_t)(CAN_BTR_LBKM | CAN_BTR_SILM)) /*!< Loopback combined with silent mode */
  238. /**
  239. * @}
  240. */
  241. /** @defgroup CAN_synchronisation_jump_width CAN Synchronization Jump Width
  242. * @{
  243. */
  244. #define CAN_SJW_1TQ (0x00000000U) /*!< 1 time quantum */
  245. #define CAN_SJW_2TQ ((uint32_t)CAN_BTR_SJW_0) /*!< 2 time quantum */
  246. #define CAN_SJW_3TQ ((uint32_t)CAN_BTR_SJW_1) /*!< 3 time quantum */
  247. #define CAN_SJW_4TQ ((uint32_t)CAN_BTR_SJW) /*!< 4 time quantum */
  248. /**
  249. * @}
  250. */
  251. /** @defgroup CAN_time_quantum_in_bit_segment_1 CAN Time Quantum in Bit Segment 1
  252. * @{
  253. */
  254. #define CAN_BS1_1TQ (0x00000000U) /*!< 1 time quantum */
  255. #define CAN_BS1_2TQ ((uint32_t)CAN_BTR_TS1_0) /*!< 2 time quantum */
  256. #define CAN_BS1_3TQ ((uint32_t)CAN_BTR_TS1_1) /*!< 3 time quantum */
  257. #define CAN_BS1_4TQ ((uint32_t)(CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 4 time quantum */
  258. #define CAN_BS1_5TQ ((uint32_t)CAN_BTR_TS1_2) /*!< 5 time quantum */
  259. #define CAN_BS1_6TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_0)) /*!< 6 time quantum */
  260. #define CAN_BS1_7TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_1)) /*!< 7 time quantum */
  261. #define CAN_BS1_8TQ ((uint32_t)(CAN_BTR_TS1_2 | CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 8 time quantum */
  262. #define CAN_BS1_9TQ ((uint32_t)CAN_BTR_TS1_3) /*!< 9 time quantum */
  263. #define CAN_BS1_10TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_0)) /*!< 10 time quantum */
  264. #define CAN_BS1_11TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_1)) /*!< 11 time quantum */
  265. #define CAN_BS1_12TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_1 | CAN_BTR_TS1_0)) /*!< 12 time quantum */
  266. #define CAN_BS1_13TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2)) /*!< 13 time quantum */
  267. #define CAN_BS1_14TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2 | CAN_BTR_TS1_0)) /*!< 14 time quantum */
  268. #define CAN_BS1_15TQ ((uint32_t)(CAN_BTR_TS1_3 | CAN_BTR_TS1_2 | CAN_BTR_TS1_1)) /*!< 15 time quantum */
  269. #define CAN_BS1_16TQ ((uint32_t)CAN_BTR_TS1) /*!< 16 time quantum */
  270. /**
  271. * @}
  272. */
  273. /** @defgroup CAN_time_quantum_in_bit_segment_2 CAN Time Quantum in Bit Segment 2
  274. * @{
  275. */
  276. #define CAN_BS2_1TQ (0x00000000U) /*!< 1 time quantum */
  277. #define CAN_BS2_2TQ ((uint32_t)CAN_BTR_TS2_0) /*!< 2 time quantum */
  278. #define CAN_BS2_3TQ ((uint32_t)CAN_BTR_TS2_1) /*!< 3 time quantum */
  279. #define CAN_BS2_4TQ ((uint32_t)(CAN_BTR_TS2_1 | CAN_BTR_TS2_0)) /*!< 4 time quantum */
  280. #define CAN_BS2_5TQ ((uint32_t)CAN_BTR_TS2_2) /*!< 5 time quantum */
  281. #define CAN_BS2_6TQ ((uint32_t)(CAN_BTR_TS2_2 | CAN_BTR_TS2_0)) /*!< 6 time quantum */
  282. #define CAN_BS2_7TQ ((uint32_t)(CAN_BTR_TS2_2 | CAN_BTR_TS2_1)) /*!< 7 time quantum */
  283. #define CAN_BS2_8TQ ((uint32_t)CAN_BTR_TS2) /*!< 8 time quantum */
  284. /**
  285. * @}
  286. */
  287. /** @defgroup CAN_filter_mode CAN Filter Mode
  288. * @{
  289. */
  290. #define CAN_FILTERMODE_IDMASK (0x00000000U) /*!< Identifier mask mode */
  291. #define CAN_FILTERMODE_IDLIST (0x00000001U) /*!< Identifier list mode */
  292. /**
  293. * @}
  294. */
  295. /** @defgroup CAN_filter_scale CAN Filter Scale
  296. * @{
  297. */
  298. #define CAN_FILTERSCALE_16BIT (0x00000000U) /*!< Two 16-bit filters */
  299. #define CAN_FILTERSCALE_32BIT (0x00000001U) /*!< One 32-bit filter */
  300. /**
  301. * @}
  302. */
  303. /** @defgroup CAN_filter_FIFO CAN Filter FIFO
  304. * @{
  305. */
  306. #define CAN_FILTER_FIFO0 (0x00000000U) /*!< Filter FIFO 0 assignment for filter x */
  307. #define CAN_FILTER_FIFO1 (0x00000001U) /*!< Filter FIFO 1 assignment for filter x */
  308. /**
  309. * @}
  310. */
  311. /** @defgroup CAN_identifier_type CAN Identifier Type
  312. * @{
  313. */
  314. #define CAN_ID_STD (0x00000000U) /*!< Standard Id */
  315. #define CAN_ID_EXT (0x00000004U) /*!< Extended Id */
  316. /**
  317. * @}
  318. */
  319. /** @defgroup CAN_remote_transmission_request CAN Remote Transmission Request
  320. * @{
  321. */
  322. #define CAN_RTR_DATA (0x00000000U) /*!< Data frame */
  323. #define CAN_RTR_REMOTE (0x00000002U) /*!< Remote frame */
  324. /**
  325. * @}
  326. */
  327. /** @defgroup CAN_receive_FIFO_number CAN Receive FIFO Number
  328. * @{
  329. */
  330. #define CAN_RX_FIFO0 (0x00000000U) /*!< CAN receive FIFO 0 */
  331. #define CAN_RX_FIFO1 (0x00000001U) /*!< CAN receive FIFO 1 */
  332. /**
  333. * @}
  334. */
  335. /** @defgroup CAN_Tx_Mailboxes CAN Tx Mailboxes
  336. * @{
  337. */
  338. #define CAN_TX_MAILBOX0 (0x00000001U) /*!< Tx Mailbox 0 */
  339. #define CAN_TX_MAILBOX1 (0x00000002U) /*!< Tx Mailbox 1 */
  340. #define CAN_TX_MAILBOX2 (0x00000004U) /*!< Tx Mailbox 2 */
  341. /**
  342. * @}
  343. */
  344. /** @defgroup CAN_flags CAN Flags
  345. * @{
  346. */
  347. /* Transmit Flags */
  348. #define CAN_FLAG_RQCP0 (0x00000500U) /*!< Request complete MailBox 0 flag */
  349. #define CAN_FLAG_TXOK0 (0x00000501U) /*!< Transmission OK MailBox 0 flag */
  350. #define CAN_FLAG_ALST0 (0x00000502U) /*!< Arbitration Lost MailBox 0 flag */
  351. #define CAN_FLAG_TERR0 (0x00000503U) /*!< Transmission error MailBox 0 flag */
  352. #define CAN_FLAG_RQCP1 (0x00000508U) /*!< Request complete MailBox1 flag */
  353. #define CAN_FLAG_TXOK1 (0x00000509U) /*!< Transmission OK MailBox 1 flag */
  354. #define CAN_FLAG_ALST1 (0x0000050AU) /*!< Arbitration Lost MailBox 1 flag */
  355. #define CAN_FLAG_TERR1 (0x0000050BU) /*!< Transmission error MailBox 1 flag */
  356. #define CAN_FLAG_RQCP2 (0x00000510U) /*!< Request complete MailBox2 flag */
  357. #define CAN_FLAG_TXOK2 (0x00000511U) /*!< Transmission OK MailBox 2 flag */
  358. #define CAN_FLAG_ALST2 (0x00000512U) /*!< Arbitration Lost MailBox 2 flag */
  359. #define CAN_FLAG_TERR2 (0x00000513U) /*!< Transmission error MailBox 2 flag */
  360. #define CAN_FLAG_TME0 (0x0000051AU) /*!< Transmit mailbox 0 empty flag */
  361. #define CAN_FLAG_TME1 (0x0000051BU) /*!< Transmit mailbox 1 empty flag */
  362. #define CAN_FLAG_TME2 (0x0000051CU) /*!< Transmit mailbox 2 empty flag */
  363. #define CAN_FLAG_LOW0 (0x0000051DU) /*!< Lowest priority mailbox 0 flag */
  364. #define CAN_FLAG_LOW1 (0x0000051EU) /*!< Lowest priority mailbox 1 flag */
  365. #define CAN_FLAG_LOW2 (0x0000051FU) /*!< Lowest priority mailbox 2 flag */
  366. /* Receive Flags */
  367. #define CAN_FLAG_FF0 (0x00000203U) /*!< RX FIFO 0 Full flag */
  368. #define CAN_FLAG_FOV0 (0x00000204U) /*!< RX FIFO 0 Overrun flag */
  369. #define CAN_FLAG_FF1 (0x00000403U) /*!< RX FIFO 1 Full flag */
  370. #define CAN_FLAG_FOV1 (0x00000404U) /*!< RX FIFO 1 Overrun flag */
  371. /* Operating Mode Flags */
  372. #define CAN_FLAG_INAK (0x00000100U) /*!< Initialization acknowledge flag */
  373. #define CAN_FLAG_SLAK (0x00000101U) /*!< Sleep acknowledge flag */
  374. #define CAN_FLAG_ERRI (0x00000102U) /*!< Error flag */
  375. #define CAN_FLAG_WKU (0x00000103U) /*!< Wake up interrupt flag */
  376. #define CAN_FLAG_SLAKI (0x00000104U) /*!< Sleep acknowledge interrupt flag */
  377. /* Error Flags */
  378. #define CAN_FLAG_EWG (0x00000300U) /*!< Error warning flag */
  379. #define CAN_FLAG_EPV (0x00000301U) /*!< Error passive flag */
  380. #define CAN_FLAG_BOF (0x00000302U) /*!< Bus-Off flag */
  381. /**
  382. * @}
  383. */
  384. /** @defgroup CAN_Interrupts CAN Interrupts
  385. * @{
  386. */
  387. /* Transmit Interrupt */
  388. #define CAN_IT_TX_MAILBOX_EMPTY ((uint32_t)CAN_IER_TMEIE) /*!< Transmit mailbox empty interrupt */
  389. /* Receive Interrupts */
  390. #define CAN_IT_RX_FIFO0_MSG_PENDING ((uint32_t)CAN_IER_FMPIE0) /*!< FIFO 0 message pending interrupt */
  391. #define CAN_IT_RX_FIFO0_FULL ((uint32_t)CAN_IER_FFIE0) /*!< FIFO 0 full interrupt */
  392. #define CAN_IT_RX_FIFO0_OVERRUN ((uint32_t)CAN_IER_FOVIE0) /*!< FIFO 0 overrun interrupt */
  393. #define CAN_IT_RX_FIFO1_MSG_PENDING ((uint32_t)CAN_IER_FMPIE1) /*!< FIFO 1 message pending interrupt */
  394. #define CAN_IT_RX_FIFO1_FULL ((uint32_t)CAN_IER_FFIE1) /*!< FIFO 1 full interrupt */
  395. #define CAN_IT_RX_FIFO1_OVERRUN ((uint32_t)CAN_IER_FOVIE1) /*!< FIFO 1 overrun interrupt */
  396. /* Operating Mode Interrupts */
  397. #define CAN_IT_WAKEUP ((uint32_t)CAN_IER_WKUIE) /*!< Wake-up interrupt */
  398. #define CAN_IT_SLEEP_ACK ((uint32_t)CAN_IER_SLKIE) /*!< Sleep acknowledge interrupt */
  399. /* Error Interrupts */
  400. #define CAN_IT_ERROR_WARNING ((uint32_t)CAN_IER_EWGIE) /*!< Error warning interrupt */
  401. #define CAN_IT_ERROR_PASSIVE ((uint32_t)CAN_IER_EPVIE) /*!< Error passive interrupt */
  402. #define CAN_IT_BUSOFF ((uint32_t)CAN_IER_BOFIE) /*!< Bus-off interrupt */
  403. #define CAN_IT_LAST_ERROR_CODE ((uint32_t)CAN_IER_LECIE) /*!< Last error code interrupt */
  404. #define CAN_IT_ERROR ((uint32_t)CAN_IER_ERRIE) /*!< Error Interrupt */
  405. /**
  406. * @}
  407. */
  408. /**
  409. * @}
  410. */
  411. /* Exported macros -----------------------------------------------------------*/
  412. /** @defgroup CAN_Exported_Macros CAN Exported Macros
  413. * @{
  414. */
  415. /** @brief Reset CAN handle state
  416. * @param __HANDLE__ CAN handle.
  417. * @retval None
  418. */
  419. #define __HAL_CAN_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CAN_STATE_RESET)
  420. /**
  421. * @brief Enable the specified CAN interrupts.
  422. * @param __HANDLE__ CAN handle.
  423. * @param __INTERRUPT__ CAN Interrupt sources to enable.
  424. * This parameter can be any combination of @arg CAN_Interrupts
  425. * @retval None
  426. */
  427. #define __HAL_CAN_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IER) |= (__INTERRUPT__))
  428. /**
  429. * @brief Disable the specified CAN interrupts.
  430. * @param __HANDLE__ CAN handle.
  431. * @param __INTERRUPT__ CAN Interrupt sources to disable.
  432. * This parameter can be any combination of @arg CAN_Interrupts
  433. * @retval None
  434. */
  435. #define __HAL_CAN_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IER) &= ~(__INTERRUPT__))
  436. /** @brief Check if the specified CAN interrupt source is enabled or disabled.
  437. * @param __HANDLE__ specifies the CAN Handle.
  438. * @param __INTERRUPT__ specifies the CAN interrupt source to check.
  439. * This parameter can be a value of @arg CAN_Interrupts
  440. * @retval The state of __IT__ (TRUE or FALSE).
  441. */
  442. #define __HAL_CAN_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IER) & (__INTERRUPT__))
  443. /** @brief Check whether the specified CAN flag is set or not.
  444. * @param __HANDLE__ specifies the CAN Handle.
  445. * @param __FLAG__ specifies the flag to check.
  446. * This parameter can be one of @arg CAN_flags
  447. * @retval The state of __FLAG__ (TRUE or FALSE).
  448. */
  449. #define __HAL_CAN_GET_FLAG(__HANDLE__, __FLAG__) \
  450. ((((__FLAG__) >> 8U) == 5U)? ((((__HANDLE__)->Instance->TSR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  451. (((__FLAG__) >> 8U) == 2U)? ((((__HANDLE__)->Instance->RF0R) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  452. (((__FLAG__) >> 8U) == 4U)? ((((__HANDLE__)->Instance->RF1R) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  453. (((__FLAG__) >> 8U) == 1U)? ((((__HANDLE__)->Instance->MSR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  454. (((__FLAG__) >> 8U) == 3U)? ((((__HANDLE__)->Instance->ESR) & (1U << ((__FLAG__) & CAN_FLAG_MASK))) == (1U << ((__FLAG__) & CAN_FLAG_MASK))): 0U)
  455. /** @brief Clear the specified CAN pending flag.
  456. * @param __HANDLE__ specifies the CAN Handle.
  457. * @param __FLAG__ specifies the flag to check.
  458. * This parameter can be one of the following values:
  459. * @arg CAN_FLAG_RQCP0: Request complete MailBox 0 Flag
  460. * @arg CAN_FLAG_TXOK0: Transmission OK MailBox 0 Flag
  461. * @arg CAN_FLAG_ALST0: Arbitration Lost MailBox 0 Flag
  462. * @arg CAN_FLAG_TERR0: Transmission error MailBox 0 Flag
  463. * @arg CAN_FLAG_RQCP1: Request complete MailBox 1 Flag
  464. * @arg CAN_FLAG_TXOK1: Transmission OK MailBox 1 Flag
  465. * @arg CAN_FLAG_ALST1: Arbitration Lost MailBox 1 Flag
  466. * @arg CAN_FLAG_TERR1: Transmission error MailBox 1 Flag
  467. * @arg CAN_FLAG_RQCP2: Request complete MailBox 2 Flag
  468. * @arg CAN_FLAG_TXOK2: Transmission OK MailBox 2 Flag
  469. * @arg CAN_FLAG_ALST2: Arbitration Lost MailBox 2 Flag
  470. * @arg CAN_FLAG_TERR2: Transmission error MailBox 2 Flag
  471. * @arg CAN_FLAG_FF0: RX FIFO 0 Full Flag
  472. * @arg CAN_FLAG_FOV0: RX FIFO 0 Overrun Flag
  473. * @arg CAN_FLAG_FF1: RX FIFO 1 Full Flag
  474. * @arg CAN_FLAG_FOV1: RX FIFO 1 Overrun Flag
  475. * @arg CAN_FLAG_WKUI: Wake up Interrupt Flag
  476. * @arg CAN_FLAG_SLAKI: Sleep acknowledge Interrupt Flag
  477. * @retval None
  478. */
  479. #define __HAL_CAN_CLEAR_FLAG(__HANDLE__, __FLAG__) \
  480. ((((__FLAG__) >> 8U) == 5U)? (((__HANDLE__)->Instance->TSR) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  481. (((__FLAG__) >> 8U) == 2U)? (((__HANDLE__)->Instance->RF0R) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  482. (((__FLAG__) >> 8U) == 4U)? (((__HANDLE__)->Instance->RF1R) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): \
  483. (((__FLAG__) >> 8U) == 1U)? (((__HANDLE__)->Instance->MSR) = (1U << ((__FLAG__) & CAN_FLAG_MASK))): 0U)
  484. /**
  485. * @}
  486. */
  487. /* Exported functions --------------------------------------------------------*/
  488. /** @addtogroup CAN_Exported_Functions CAN Exported Functions
  489. * @{
  490. */
  491. /** @addtogroup CAN_Exported_Functions_Group1 Initialization and de-initialization functions
  492. * @brief Initialization and Configuration functions
  493. * @{
  494. */
  495. /* Initialization and de-initialization functions *****************************/
  496. HAL_StatusTypeDef HAL_CAN_Init(CAN_HandleTypeDef *hcan);
  497. HAL_StatusTypeDef HAL_CAN_DeInit(CAN_HandleTypeDef *hcan);
  498. void HAL_CAN_MspInit(CAN_HandleTypeDef *hcan);
  499. void HAL_CAN_MspDeInit(CAN_HandleTypeDef *hcan);
  500. /**
  501. * @}
  502. */
  503. /** @addtogroup CAN_Exported_Functions_Group2 Configuration functions
  504. * @brief Configuration functions
  505. * @{
  506. */
  507. /* Configuration functions ****************************************************/
  508. HAL_StatusTypeDef HAL_CAN_ConfigFilter(CAN_HandleTypeDef *hcan, CAN_FilterTypeDef *sFilterConfig);
  509. /**
  510. * @}
  511. */
  512. /** @addtogroup CAN_Exported_Functions_Group3 Control functions
  513. * @brief Control functions
  514. * @{
  515. */
  516. /* Control functions **********************************************************/
  517. HAL_StatusTypeDef HAL_CAN_Start(CAN_HandleTypeDef *hcan);
  518. HAL_StatusTypeDef HAL_CAN_Stop(CAN_HandleTypeDef *hcan);
  519. HAL_StatusTypeDef HAL_CAN_RequestSleep(CAN_HandleTypeDef *hcan);
  520. HAL_StatusTypeDef HAL_CAN_WakeUp(CAN_HandleTypeDef *hcan);
  521. uint32_t HAL_CAN_IsSleepActive(CAN_HandleTypeDef *hcan);
  522. HAL_StatusTypeDef HAL_CAN_AddTxMessage(CAN_HandleTypeDef *hcan, CAN_TxHeaderTypeDef *pHeader, uint8_t aData[], uint32_t *pTxMailbox);
  523. HAL_StatusTypeDef HAL_CAN_AbortTxRequest(CAN_HandleTypeDef *hcan, uint32_t TxMailboxes);
  524. uint32_t HAL_CAN_GetTxMailboxesFreeLevel(CAN_HandleTypeDef *hcan);
  525. uint32_t HAL_CAN_IsTxMessagePending(CAN_HandleTypeDef *hcan, uint32_t TxMailboxes);
  526. uint32_t HAL_CAN_GetTxTimestamp(CAN_HandleTypeDef *hcan, uint32_t TxMailbox);
  527. HAL_StatusTypeDef HAL_CAN_GetRxMessage(CAN_HandleTypeDef *hcan, uint32_t RxFifo, CAN_RxHeaderTypeDef *pHeader, uint8_t aData[]);
  528. uint32_t HAL_CAN_GetRxFifoFillLevel(CAN_HandleTypeDef *hcan, uint32_t RxFifo);
  529. /**
  530. * @}
  531. */
  532. /** @addtogroup CAN_Exported_Functions_Group4 Interrupts management
  533. * @brief Interrupts management
  534. * @{
  535. */
  536. /* Interrupts management ******************************************************/
  537. HAL_StatusTypeDef HAL_CAN_ActivateNotification(CAN_HandleTypeDef *hcan, uint32_t ActiveITs);
  538. HAL_StatusTypeDef HAL_CAN_DeactivateNotification(CAN_HandleTypeDef *hcan, uint32_t InactiveITs);
  539. void HAL_CAN_IRQHandler(CAN_HandleTypeDef *hcan);
  540. /**
  541. * @}
  542. */
  543. /** @addtogroup CAN_Exported_Functions_Group5 Callback functions
  544. * @brief Callback functions
  545. * @{
  546. */
  547. /* Callbacks functions ********************************************************/
  548. void HAL_CAN_TxMailbox0CompleteCallback(CAN_HandleTypeDef *hcan);
  549. void HAL_CAN_TxMailbox1CompleteCallback(CAN_HandleTypeDef *hcan);
  550. void HAL_CAN_TxMailbox2CompleteCallback(CAN_HandleTypeDef *hcan);
  551. void HAL_CAN_TxMailbox0AbortCallback(CAN_HandleTypeDef *hcan);
  552. void HAL_CAN_TxMailbox1AbortCallback(CAN_HandleTypeDef *hcan);
  553. void HAL_CAN_TxMailbox2AbortCallback(CAN_HandleTypeDef *hcan);
  554. void HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan);
  555. void HAL_CAN_RxFifo0FullCallback(CAN_HandleTypeDef *hcan);
  556. void HAL_CAN_RxFifo1MsgPendingCallback(CAN_HandleTypeDef *hcan);
  557. void HAL_CAN_RxFifo1FullCallback(CAN_HandleTypeDef *hcan);
  558. void HAL_CAN_SleepCallback(CAN_HandleTypeDef *hcan);
  559. void HAL_CAN_WakeUpFromRxMsgCallback(CAN_HandleTypeDef *hcan);
  560. void HAL_CAN_ErrorCallback(CAN_HandleTypeDef *hcan);
  561. /**
  562. * @}
  563. */
  564. /** @addtogroup CAN_Exported_Functions_Group6 Peripheral State and Error functions
  565. * @brief CAN Peripheral State functions
  566. * @{
  567. */
  568. /* Peripheral State and Error functions ***************************************/
  569. HAL_CAN_StateTypeDef HAL_CAN_GetState(CAN_HandleTypeDef *hcan);
  570. uint32_t HAL_CAN_GetError(CAN_HandleTypeDef *hcan);
  571. HAL_StatusTypeDef HAL_CAN_ResetError(CAN_HandleTypeDef *hcan);
  572. /**
  573. * @}
  574. */
  575. /**
  576. * @}
  577. */
  578. /* Private types -------------------------------------------------------------*/
  579. /** @defgroup CAN_Private_Types CAN Private Types
  580. * @{
  581. */
  582. /**
  583. * @}
  584. */
  585. /* Private variables ---------------------------------------------------------*/
  586. /** @defgroup CAN_Private_Variables CAN Private Variables
  587. * @{
  588. */
  589. /**
  590. * @}
  591. */
  592. /* Private constants ---------------------------------------------------------*/
  593. /** @defgroup CAN_Private_Constants CAN Private Constants
  594. * @{
  595. */
  596. #define CAN_FLAG_MASK (0x000000FFU)
  597. /**
  598. * @}
  599. */
  600. /* Private Macros -----------------------------------------------------------*/
  601. /** @defgroup CAN_Private_Macros CAN Private Macros
  602. * @{
  603. */
  604. #define IS_CAN_MODE(MODE) (((MODE) == CAN_MODE_NORMAL) || \
  605. ((MODE) == CAN_MODE_LOOPBACK)|| \
  606. ((MODE) == CAN_MODE_SILENT) || \
  607. ((MODE) == CAN_MODE_SILENT_LOOPBACK))
  608. #define IS_CAN_SJW(SJW) (((SJW) == CAN_SJW_1TQ) || ((SJW) == CAN_SJW_2TQ) || \
  609. ((SJW) == CAN_SJW_3TQ) || ((SJW) == CAN_SJW_4TQ))
  610. #define IS_CAN_BS1(BS1) (((BS1) == CAN_BS1_1TQ) || ((BS1) == CAN_BS1_2TQ) || \
  611. ((BS1) == CAN_BS1_3TQ) || ((BS1) == CAN_BS1_4TQ) || \
  612. ((BS1) == CAN_BS1_5TQ) || ((BS1) == CAN_BS1_6TQ) || \
  613. ((BS1) == CAN_BS1_7TQ) || ((BS1) == CAN_BS1_8TQ) || \
  614. ((BS1) == CAN_BS1_9TQ) || ((BS1) == CAN_BS1_10TQ)|| \
  615. ((BS1) == CAN_BS1_11TQ)|| ((BS1) == CAN_BS1_12TQ)|| \
  616. ((BS1) == CAN_BS1_13TQ)|| ((BS1) == CAN_BS1_14TQ)|| \
  617. ((BS1) == CAN_BS1_15TQ)|| ((BS1) == CAN_BS1_16TQ))
  618. #define IS_CAN_BS2(BS2) (((BS2) == CAN_BS2_1TQ) || ((BS2) == CAN_BS2_2TQ) || \
  619. ((BS2) == CAN_BS2_3TQ) || ((BS2) == CAN_BS2_4TQ) || \
  620. ((BS2) == CAN_BS2_5TQ) || ((BS2) == CAN_BS2_6TQ) || \
  621. ((BS2) == CAN_BS2_7TQ) || ((BS2) == CAN_BS2_8TQ))
  622. #define IS_CAN_PRESCALER(PRESCALER) (((PRESCALER) >= 1U) && ((PRESCALER) <= 1024U))
  623. #define IS_CAN_FILTER_ID_HALFWORD(HALFWORD) ((HALFWORD) <= 0xFFFFU)
  624. #define IS_CAN_FILTER_BANK_DUAL(BANK) ((BANK) <= 27U)
  625. #define IS_CAN_FILTER_BANK_SINGLE(BANK) ((BANK) <= 13U)
  626. #define IS_CAN_FILTER_MODE(MODE) (((MODE) == CAN_FILTERMODE_IDMASK) || \
  627. ((MODE) == CAN_FILTERMODE_IDLIST))
  628. #define IS_CAN_FILTER_SCALE(SCALE) (((SCALE) == CAN_FILTERSCALE_16BIT) || \
  629. ((SCALE) == CAN_FILTERSCALE_32BIT))
  630. #define IS_CAN_FILTER_FIFO(FIFO) (((FIFO) == CAN_FILTER_FIFO0) || \
  631. ((FIFO) == CAN_FILTER_FIFO1))
  632. #define IS_CAN_TX_MAILBOX(TRANSMITMAILBOX) (((TRANSMITMAILBOX) == CAN_TX_MAILBOX0 ) || \
  633. ((TRANSMITMAILBOX) == CAN_TX_MAILBOX1 ) || \
  634. ((TRANSMITMAILBOX) == CAN_TX_MAILBOX2 ))
  635. #define IS_CAN_TX_MAILBOX_LIST(TRANSMITMAILBOX) ((TRANSMITMAILBOX) <= (CAN_TX_MAILBOX0 | CAN_TX_MAILBOX1 | CAN_TX_MAILBOX2))
  636. #define IS_CAN_STDID(STDID) ((STDID) <= 0x7FFU)
  637. #define IS_CAN_EXTID(EXTID) ((EXTID) <= 0x1FFFFFFFU)
  638. #define IS_CAN_DLC(DLC) ((DLC) <= 8U)
  639. #define IS_CAN_IDTYPE(IDTYPE) (((IDTYPE) == CAN_ID_STD) || \
  640. ((IDTYPE) == CAN_ID_EXT))
  641. #define IS_CAN_RTR(RTR) (((RTR) == CAN_RTR_DATA) || ((RTR) == CAN_RTR_REMOTE))
  642. #define IS_CAN_RX_FIFO(FIFO) (((FIFO) == CAN_RX_FIFO0) || ((FIFO) == CAN_RX_FIFO1))
  643. #define IS_CAN_IT(IT) ((IT) <= (CAN_IT_TX_MAILBOX_EMPTY | CAN_IT_RX_FIFO0_MSG_PENDING | \
  644. CAN_IT_RX_FIFO0_FULL | CAN_IT_RX_FIFO0_OVERRUN | \
  645. CAN_IT_RX_FIFO1_MSG_PENDING | CAN_IT_RX_FIFO1_FULL | \
  646. CAN_IT_RX_FIFO1_OVERRUN | CAN_IT_WAKEUP | \
  647. CAN_IT_SLEEP_ACK | CAN_IT_ERROR_WARNING | \
  648. CAN_IT_ERROR_PASSIVE | CAN_IT_BUSOFF | \
  649. CAN_IT_LAST_ERROR_CODE | CAN_IT_ERROR))
  650. /**
  651. * @}
  652. */
  653. /* End of private macros -----------------------------------------------------*/
  654. /**
  655. * @}
  656. */
  657. #endif /* CAN1 */
  658. /**
  659. * @}
  660. */
  661. #ifdef __cplusplus
  662. }
  663. #endif
  664. #endif /* STM32L4xx_HAL_CAN_H */
  665. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/