[bsp][pico]: add rtc driver (#8492)

This commit is contained in:
Shicheng Chu
2024-01-16 14:01:19 +08:00
committed by GitHub
parent 2a68f70094
commit 20cdc391fc
3 changed files with 133 additions and 0 deletions
+3
View File
@@ -37,6 +37,9 @@ if GetDepend('BSP_USING_PWM'):
if GetDepend('BSP_USING_HWTIMER'):
src += ['drv_hwtimer.c']
if GetDepend('BSP_USING_RTC'):
src += ['drv_rtc.c']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')