[bsp][pico]: add pwm driver (#8178)

Co-authored-by: Meco Man <920369182@qq.com>
This commit is contained in:
Shicheng Chu
2023-10-29 13:17:25 -04:00
committed by GitHub
co-authored by Meco Man
parent de779b1804
commit 1554888c0b
4 changed files with 410 additions and 0 deletions
+3
View File
@@ -31,6 +31,9 @@ if GetDepend('BSP_USING_I2C'):
if GetDepend('BSP_USING_ON_CHIP_FLASH'):
src += ['drv_flash.c']
if GetDepend('BSP_USING_PWM'):
src += ['drv_pwm.c']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')