rt-thread/bsp/stm32/libraries/HAL_Drivers/config/f3/pwm_config.h

34 lines
686 B
C
Raw Normal View History

2021-07-30 11:38:25 +08:00
/*
2023-01-09 10:20:16 +08:00
* Copyright (c) 2006-2023, RT-Thread Development Team
2021-07-30 11:38:25 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-12-13 zylx first version
*/
#ifndef __PWM_CONFIG_H__
#define __PWM_CONFIG_H__
#include <rtthread.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef BSP_USING_PWM1
#define PWM1_CONFIG \
{ \
.tim_handle.Instance = TIM1, \
.name = "pwm1", \
.channel = RT_NULL \
2021-07-30 11:38:25 +08:00
}
#endif /* BSP_USING_PWM1 */
#ifdef __cplusplus
}
#endif
#endif /* __PWM_CONFIG_H__ */