70 lines
2.0 KiB
C
70 lines
2.0 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file spi.h
|
|
* @brief This file contains all the function prototypes for
|
|
* the spi.c file
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2022 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __SPI_H__
|
|
#define __SPI_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
#if defined(STM32WLE5xx)||defined(STM32WL55xx)
|
|
#define MEMS_SPI_SCK_Pin GPIO_PIN_5 //GPIO_PIN_3
|
|
#define MEMS_SPI_SCK_GPIO_Port GPIOA //GPIOB
|
|
#define MEMS_SPI_MISO_Pin GPIO_PIN_6 //GPIO_PIN_11
|
|
#define MEMS_SPI_MISO_GPIO_Port GPIOA //GPIOA
|
|
#define MEMS_SPI_MOSI_Pin GPIO_PIN_7 //GPIO_PIN_12
|
|
#define MEMS_SPI_MOSI_GPIO_Port GPIOA //GPIOA
|
|
#define MEMS_CS_N_Pin GPIO_PIN_4 //GPIO_PIN_15
|
|
#define MEMS_CS_N_GPIO_Port GPIOA //GPIOA
|
|
#define MEMS_SENSOR_INTERRUPT_Pin GPIO_PIN_8
|
|
#define MEMS_SENSOR_INTERRUPT_GPIO_Port GPIOA
|
|
#define MEMS_SENSOR_INTERRUPT_EXTI_IRQn EXTI9_5_IRQn
|
|
#define MEMS_ENABLE_Pin GPIO_PIN_5
|
|
#define MEMS_ENABLE_GPIO_Port GPIOB
|
|
#endif
|
|
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
extern SPI_HandleTypeDef hspi1;
|
|
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
void MX_SPI1_Init(void);
|
|
|
|
/* USER CODE BEGIN Prototypes */
|
|
|
|
/* USER CODE END Prototypes */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __SPI_H__ */
|
|
|