[components][drivers] change name: capture -> inputcapture

This commit is contained in:
tangweikang
2019-08-21 10:40:20 +08:00
parent e1587de6f7
commit f9bad31d57
7 changed files with 264 additions and 264 deletions

View File

@@ -17,8 +17,8 @@ if GetDepend(['RT_USING_PWM']):
if GetDepend(['RT_USING_ENCODER']):
src = src + ['encoder.c']
if GetDepend(['RT_USING_CAPTURE']):
src = src + ['rt_capture.c']
if GetDepend(['RT_USING_INPUT_CAPTURE']):
src = src + ['rt_inputcapture.c']
if len(src):
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)