52 lines
856 B
C
52 lines
856 B
C
/*
|
|
* stm32f4xx_specific.h
|
|
*
|
|
* @date Jun 16, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
*/
|
|
|
|
#ifndef STM32F4XX_SPECIFIC_H_
|
|
#define STM32F4XX_SPECIFIC_H_
|
|
|
|
#ifndef GPIO_AF_TIM1
|
|
#define GPIO_AF_TIM1 1
|
|
#endif
|
|
|
|
#ifndef GPIO_AF_TIM2
|
|
#define GPIO_AF_TIM2 1
|
|
#endif
|
|
|
|
#ifndef GPIO_AF_TIM3
|
|
#define GPIO_AF_TIM3 2
|
|
#endif
|
|
|
|
#ifndef GPIO_AF_TIM4
|
|
#define GPIO_AF_TIM4 2
|
|
#endif
|
|
|
|
#ifndef GPIO_AF_TIM5
|
|
#define GPIO_AF_TIM5 2
|
|
#endif
|
|
|
|
#ifndef GPIO_AF_TIM9
|
|
#define GPIO_AF_TIM9 3
|
|
#endif
|
|
|
|
#ifndef ADC_TwoSamplingDelay_5Cycles
|
|
#define ADC_TwoSamplingDelay_5Cycles ((uint32_t)0x00000000)
|
|
#endif
|
|
|
|
#ifndef ADC_TwoSamplingDelay_20Cycles
|
|
#define ADC_TwoSamplingDelay_20Cycles ((uint32_t)0x00000F00)
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ADC_CR2_SWSTART
|
|
#define ADC_CR2_SWSTART ((uint32_t)0x40000000)
|
|
#endif
|
|
|
|
#endif /* STM32F4XX_SPECIFIC_H_ */
|