|
@@ -15,35 +15,36 @@ CubeMX_Config/Src/stm32l4xx_hal_msp.c
|
|
|
path = [cwd]
|
|
|
path += [cwd + '/CubeMX_Config/Inc']
|
|
|
|
|
|
-if GetDepend(['BSP_USING_KEY']):
|
|
|
- src += Glob('ports/drv_key.c')
|
|
|
+if not GetDepend(['RT_USING_NANO']):
|
|
|
+ if GetDepend(['BSP_USING_KEY']):
|
|
|
+ src += os.path.join('ports', 'drv_key.c')
|
|
|
|
|
|
-if GetDepend(['BSP_USING_QSPI_FLASH']):
|
|
|
- src += Glob('ports/drv_qspi_flash.c')
|
|
|
+ if GetDepend(['BSP_USING_QSPI_FLASH']):
|
|
|
+ src += os.path.join('ports', 'drv_qspi_flash.c')
|
|
|
|
|
|
-if GetDepend(['BSP_USING_FS']):
|
|
|
- src += Glob('ports/drv_filesystem.c')
|
|
|
- if GetDepend(['BSP_USING_SPI_FLASH_LITTLEFS']):
|
|
|
- src += Glob('ports/fal/fal_spi_flash_sfud_port.c')
|
|
|
- path += [cwd + '/ports/fal']
|
|
|
+ if GetDepend(['BSP_USING_FS']):
|
|
|
+ src += os.path.join('ports', 'drv_filesystem.c')
|
|
|
+ if GetDepend(['BSP_USING_SPI_FLASH_LITTLEFS']):
|
|
|
+ src += os.path.join('ports', 'fal', 'fal_spi_flash_sfud_port.c')
|
|
|
+ path += [cwd + os.path.join('ports', 'fal')]
|
|
|
|
|
|
-if GetDepend(['RT_USING_SENSOR']):
|
|
|
- src += Glob('ports/drv_sensors.c')
|
|
|
+ if GetDepend(['RT_USING_SENSOR']):
|
|
|
+ src += os.path.join('ports', 'drv_sensors.c')
|
|
|
|
|
|
-if GetDepend(['BSP_USING_AUDIO']):
|
|
|
- src += Glob('ports/audio/drv_es8388.c')
|
|
|
- src += Glob('ports/audio/drv_sound.c')
|
|
|
+ if GetDepend(['BSP_USING_AUDIO']):
|
|
|
+ src += os.path.join('ports', 'audio', 'drv_es8388.c')
|
|
|
+ src += os.path.join('ports', 'audio', 'drv_sound.c')
|
|
|
|
|
|
-if GetDepend(['BSP_USING_AUDIO_RECORD']):
|
|
|
- src += Glob('ports/audio/drv_mic.c')
|
|
|
+ if GetDepend(['BSP_USING_AUDIO_RECORD']):
|
|
|
+ src += os.path.join('ports', 'audio', 'drv_mic.c')
|
|
|
|
|
|
-if GetDepend(['BSP_USING_STM32_SDIO']):
|
|
|
- src += Glob('ports/drv_sdio_adapter.c')
|
|
|
+ if GetDepend(['BSP_USING_STM32_SDIO']):
|
|
|
+ src += os.path.join('ports', 'drv_sdio_adapter.c')
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-if GetDepend(['BSP_USING_AUDIO']):
|
|
|
- path += [cwd + '/ports/audio']
|
|
|
+ if GetDepend(['BSP_USING_AUDIO']):
|
|
|
+ path += [cwd + os.path.join('ports', 'audio')]
|
|
|
+else:
|
|
|
+ src += [os.path.join('nano', 'drv_console.c')]
|
|
|
|
|
|
startup_path_prefix = SDK_LIB
|
|
|
|