source: S-port/trunk/Core/Inc/spi.h@ 1

Last change on this file since 1 was 1, checked in by AlexLir, 2 years ago
File size: 1.4 KB
Line 
1/**
2 ******************************************************************************
3 * @file spi.h
4 * @brief This file contains all the function prototypes for
5 * the spi.c file
6 ******************************************************************************
7 * @attention
8 *
9 * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
10 * All rights reserved.</center></h2>
11 *
12 * This software component is licensed by ST under Ultimate Liberty license
13 * SLA0044, the "License"; You may not use this file except in compliance with
14 * the License. You may obtain a copy of the License at:
15 * www.st.com/SLA0044
16 *
17 ******************************************************************************
18 */
19/* Define to prevent recursive inclusion -------------------------------------*/
20#ifndef __SPI_H__
21#define __SPI_H__
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/* Includes ------------------------------------------------------------------*/
28#include "main.h"
29
30/* USER CODE BEGIN Includes */
31
32/* USER CODE END Includes */
33
34extern SPI_HandleTypeDef hspi3;
35
36/* USER CODE BEGIN Private defines */
37
38/* USER CODE END Private defines */
39
40void MX_SPI3_Init(void);
41
42/* USER CODE BEGIN Prototypes */
43
44/* USER CODE END Prototypes */
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif /* __SPI_H__ */
51
52/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.