stm32f0xx_hal_spi_ex.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef STM32F0xx_HAL_SPI_EX_H
  21. #define STM32F0xx_HAL_SPI_EX_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32f0xx_hal_def.h"
  27. /** @addtogroup STM32F0xx_HAL_Driver
  28. * @{
  29. */
  30. /** @addtogroup SPIEx
  31. * @{
  32. */
  33. /* Exported types ------------------------------------------------------------*/
  34. /* Exported constants --------------------------------------------------------*/
  35. /* Exported macros -----------------------------------------------------------*/
  36. /* Exported functions --------------------------------------------------------*/
  37. /** @addtogroup SPIEx_Exported_Functions
  38. * @{
  39. */
  40. /* Initialization and de-initialization functions ****************************/
  41. /* IO operation functions *****************************************************/
  42. /** @addtogroup SPIEx_Exported_Functions_Group1
  43. * @{
  44. */
  45. HAL_StatusTypeDef HAL_SPIEx_FlushRxFifo(SPI_HandleTypeDef *hspi);
  46. /**
  47. * @}
  48. */
  49. /**
  50. * @}
  51. */
  52. /**
  53. * @}
  54. */
  55. /**
  56. * @}
  57. */
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif /* STM32F0xx_HAL_SPI_EX_H */
  62. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/