You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

811 lines
36 KiB

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