stm32f0xx_hal_spi_ex.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**
  2. ******************************************************************************
  3. * @file stm32f0xx_hal_spi_ex.h
  4. * @author MCD Application Team
  5. * @brief Header file of SPI HAL Extended module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef STM32F0xx_HAL_SPI_EX_H
  20. #define STM32F0xx_HAL_SPI_EX_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /* Includes ------------------------------------------------------------------*/
  25. #include "stm32f0xx_hal_def.h"
  26. /** @addtogroup STM32F0xx_HAL_Driver
  27. * @{
  28. */
  29. /** @addtogroup SPIEx
  30. * @{
  31. */
  32. /* Exported types ------------------------------------------------------------*/
  33. /* Exported constants --------------------------------------------------------*/
  34. /* Exported macros -----------------------------------------------------------*/
  35. /* Exported functions --------------------------------------------------------*/
  36. /** @addtogroup SPIEx_Exported_Functions
  37. * @{
  38. */
  39. /* Initialization and de-initialization functions ****************************/
  40. /* IO operation functions *****************************************************/
  41. /** @addtogroup SPIEx_Exported_Functions_Group1
  42. * @{
  43. */
  44. HAL_StatusTypeDef HAL_SPIEx_FlushRxFifo(SPI_HandleTypeDef *hspi);
  45. /**
  46. * @}
  47. */
  48. /**
  49. * @}
  50. */
  51. /**
  52. * @}
  53. */
  54. /**
  55. * @}
  56. */
  57. #ifdef __cplusplus
  58. }
  59. #endif
  60. #endif /* STM32F0xx_HAL_SPI_EX_H */