[DeviceDrivers] rename _pwm.c to rt_drv_pwm.c

This commit is contained in:
aozima 2018-06-08 16:07:12 +08:00
parent 0e5b4a0ff2
commit 5569d17b95
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ if GetDepend(['RT_USING_PIN']):
src = src + ['pin.c'] src = src + ['pin.c']
if GetDepend(['RT_USING_PWM']): if GetDepend(['RT_USING_PWM']):
src = src + ['_pwm.c'] src = src + ['rt_drv_pwm.c']
if len(src): if len(src):
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)

View File

@ -1,5 +1,5 @@
/* /*
* File : _pwm.c * File : rt_drv_pwm.c
* This file is part of RT-Thread RTOS * This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2018, RT-Thread Development Team * COPYRIGHT (C) 2018, RT-Thread Development Team
* *