[components][drivers] add capture driven framework

This commit is contained in:
tangweikang
2019-08-13 20:33:23 +08:00
parent 3b252d5b97
commit 473505053f
5 changed files with 262 additions and 0 deletions
+3
View File
@@ -17,6 +17,9 @@ 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 len(src):
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)