89 lines
2.7 KiB
C
89 lines
2.7 KiB
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-12-12 zylx first version
|
|
*/
|
|
|
|
#ifndef __TIM_CONFIG_H__
|
|
#define __TIM_CONFIG_H__
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef TIM_DEV_INFO_CONFIG
|
|
#ifdef BSP_USING_TIM2
|
|
#define TIM_DEV_INFO_CONFIG \
|
|
{ \
|
|
.maxfreq = 1000000, \
|
|
.minfreq = 2000, \
|
|
.maxcnt = 0xFFFFFFFF, \
|
|
.cntmode = HWTIMER_CNTMODE_UP, \
|
|
}
|
|
#else
|
|
#define TIM_DEV_INFO_CONFIG \
|
|
{ \
|
|
.maxfreq = 1000000, \
|
|
.minfreq = 2000, \
|
|
.maxcnt = 0xFFFF, \
|
|
.cntmode = HWTIMER_CNTMODE_UP, \
|
|
}
|
|
#endif
|
|
#endif /* TIM_DEV_INFO_CONFIG */
|
|
|
|
#ifdef BSP_USING_TIM2
|
|
#ifndef TIM2_CONFIG
|
|
#define TIM2_CONFIG \
|
|
{ \
|
|
.tim_handle.Instance = TIM2, \
|
|
.tim_irqn = TIM2_IRQn, \
|
|
.name = "timer2", \
|
|
}
|
|
#endif /* TIM2_CONFIG */
|
|
#endif /* BSP_USING_TIM2 */
|
|
|
|
#ifdef BSP_USING_TIM15
|
|
#ifndef TIM15_CONFIG
|
|
#define TIM15_CONFIG \
|
|
{ \
|
|
.tim_handle.Instance = TIM15, \
|
|
.tim_irqn = TIM1_BRK_TIM15_IRQn, \
|
|
.name = "timer15", \
|
|
}
|
|
#endif /* TIM15_CONFIG */
|
|
#endif /* BSP_USING_TIM15 */
|
|
|
|
#ifdef BSP_USING_TIM16
|
|
#ifndef TIM16_CONFIG
|
|
#define TIM16_CONFIG \
|
|
{ \
|
|
.tim_handle.Instance = TIM16, \
|
|
.tim_irqn = TIM1_UP_TIM16_IRQn, \
|
|
.name = "timer16", \
|
|
}
|
|
#endif /* TIM16_CONFIG */
|
|
#endif /* BSP_USING_TIM16 */
|
|
|
|
#ifdef BSP_USING_TIM17
|
|
#ifndef TIM17_CONFIG
|
|
#define TIM17_CONFIG \
|
|
{ \
|
|
.tim_handle.Instance = TIM17, \
|
|
.tim_irqn = TIM1_TRG_COM_TIM17_IRQn, \
|
|
.name = "timer17", \
|
|
}
|
|
#endif /* TIM17_CONFIG */
|
|
#endif /* BSP_USING_TIM17 */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __TIM_CONFIG_H__ */
|