[bsp][pico] add flash driver (#8161)

This commit is contained in:
Shicheng Chu
2023-10-20 07:05:30 +08:00
committed by GitHub
parent acda798759
commit 43f96b3f85
4 changed files with 136 additions and 0 deletions
+3
View File
@@ -28,6 +28,9 @@ if GetDepend('BSP_USING_SPI'):
if GetDepend('BSP_USING_I2C'):
src += ['drv_i2c.c']
if GetDepend('BSP_USING_ON_CHIP_FLASH'):
src += ['drv_flash.c']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')