mirror of
https://github.com/STMicroelectronics/STM32CubeF0.git
synced 2025-05-03 22:17:10 +08:00
86 lines
3.8 KiB
C
86 lines
3.8 KiB
C
/**
|
|
******************************************************************************
|
|
* @file Demonstrations/Inc/main.h
|
|
* @author MCD Application Team
|
|
* @brief Header for main.c module
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under Ultimate Liberty license
|
|
* SLA0044, the "License"; You may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at:
|
|
* www.st.com/SLA0044
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f0xx_hal.h"
|
|
#include "stm32f072b_discovery.h"
|
|
#include "stm32f072b_discovery_gyroscope.h"
|
|
#include "tsl_user.h"
|
|
#include "usbd_desc.h"
|
|
#include "usbd_hid.h"
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* User can use this section to tailor TSCx/TSCx instance used and associated
|
|
resources */
|
|
/* Definition for TSCx clock resources */
|
|
#define TSCx TSC
|
|
#define TSCx_CLK_ENABLE() __HAL_RCC_TSC_CLK_ENABLE()
|
|
#define TSCx_TS1_IO_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define TSCx_TS2_IO_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define TSCx_TS3_IO_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE()
|
|
#define TSCx_TS1_CAPACITOR_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define TSCx_TS2_CAPACITOR_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define TSCx_TS3_CAPACITOR_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE()
|
|
|
|
#define TSCx_FORCE_RESET() __HAL_RCC_TSC_FORCE_RESET()
|
|
#define TSCx_RELEASE_RESET() __HAL_RCC_TSC_RELEASE_RESET()
|
|
|
|
/* Definition for TSCx IO Pins */
|
|
#define TSCx_TS1_IO_PIN GPIO_PIN_2
|
|
#define TSCx_TS1_IO_GPIO_PORT GPIOA
|
|
#define TSCx_TS1_IO_AF GPIO_AF3_TSC
|
|
|
|
#define TSCx_TS2_IO_PIN GPIO_PIN_6
|
|
#define TSCx_TS2_IO_GPIO_PORT GPIOA
|
|
#define TSCx_TS2_IO_AF GPIO_AF3_TSC
|
|
|
|
#define TSCx_TS3_IO_PIN GPIO_PIN_0
|
|
#define TSCx_TS3_IO_GPIO_PORT GPIOB
|
|
#define TSCx_TS3_IO_AF GPIO_AF3_TSC
|
|
|
|
/* Definition for TSCx Sampling Capacitor Pins */
|
|
#define TSCx_TS1_SAMPLING_PIN GPIO_PIN_3
|
|
#define TSCx_TS1_SAMPLING_GPIO_PORT GPIOA
|
|
#define TSCx_TS1_SAMPLING_AF GPIO_AF3_TSC
|
|
|
|
#define TSCx_TS2_SAMPLING_PIN GPIO_PIN_7
|
|
#define TSCx_TS2_SAMPLING_GPIO_PORT GPIOA
|
|
#define TSCx_TS2_SAMPLING_AF GPIO_AF3_TSC
|
|
|
|
#define TSCx_TS3_SAMPLING_PIN GPIO_PIN_1
|
|
#define TSCx_TS3_SAMPLING_GPIO_PORT GPIOB
|
|
#define TSCx_TS3_SAMPLING_AF GPIO_AF3_TSC
|
|
|
|
/* Definition for TSCx's NVIC */
|
|
/* Not used in this example. Keep it for reference.
|
|
#define TSCx_EXTI_IRQn TSC_IRQn
|
|
#define TSCx_EXTI_IRQHandler TSC_IRQHandler */
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
/* Exported functions ------------------------------------------------------- */
|
|
|
|
#endif /* __MAIN_H */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|