mirror of
https://github.com/bouffalolab/bouffalo_sdk.git
synced 2025-05-09 03:11:58 +08:00

* format ld section * add no vector irq mode * add psram copy function * update lhal, add some api, update dsp lib * enable wifi coex * update flash tool to v1.0.5 * add uart dma rto, usbh hid keyboard demo * misc updated
13 lines
403 B
CMake
13 lines
403 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
add_subdirectory(bsp)
|
|
add_subdirectory(components)
|
|
add_subdirectory(drivers/lhal)
|
|
add_subdirectory(drivers/soc/${CHIP}/std)
|
|
if("${CHIP}" STREQUAL "bl616")
|
|
sdk_add_subdirectory_ifdef(CONFIG_PM drivers/pm)
|
|
endif()
|
|
sdk_add_subdirectory_ifdef(CONFIG_RF drivers/soc/${CHIP}/rf)
|
|
if("${CHIP}" STREQUAL "bl616")
|
|
sdk_add_subdirectory_ifdef(CONFIG_RF drivers/rfparam)
|
|
endif() |