/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2018-12-11 zylx first version */ #ifndef __TIM_CONFIG_H__ #define __TIM_CONFIG_H__ #include #ifdef __cplusplus extern "C" { #endif #ifndef TIM_DEV_INFO_CONFIG #define TIM_DEV_INFO_CONFIG \ { \ .maxfreq = 1000000, \ .minfreq = 3000, \ .maxcnt = 0xFFFF, \ .cntmode = HWTIMER_CNTMODE_UP, \ } #endif /* TIM_DEV_INFO_CONFIG */ #ifdef BSP_USING_TIM1 #ifndef TIM1_CONFIG #define TIM1_CONFIG \ { \ .tim_handle.Instance = TIM1, \ .tim_irqn = TIM1_IRQn, \ .name = "timer1", \ } #endif /* TIM1_CONFIG */ #endif /* BSP_USING_TIM1 */ #ifdef __cplusplus } #endif #endif /* __TIM_CONFIG_H__ */