| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- Import("env")
- env.Append(
- CPPPATH=[
- "#/lib/STM32CubeWB/Drivers/CMSIS/Device/ST/STM32WBxx/Include",
- "#/lib/STM32CubeWB/Drivers/CMSIS/Include",
- "#/lib/STM32CubeWB/Drivers/STM32WBxx_HAL_Driver/Inc",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN",
- ],
- CPPDEFINES=[
- "STM32WB",
- "STM32WB55xx",
- "USE_FULL_ASSERT",
- "USE_FULL_LL_DRIVER",
- ],
- SDK_HEADERS=env.GlobRecursive(
- "*_ll_*.h",
- Dir("STM32CubeWB/Drivers/STM32WBxx_HAL_Driver/Inc/"),
- exclude="*usb.h",
- ),
- )
- if env["RAM_EXEC"]:
- env.Append(
- CPPDEFINES=[
- "VECT_TAB_SRAM",
- ],
- )
- libenv = env.Clone(FW_LIB_NAME="stm32cubewb")
- libenv.Append(
- CPPPATH=[
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/ble",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl",
- "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/utilities",
- ]
- )
- libenv.ApplyLibFlags()
- sources = libenv.GlobRecursive(
- "*_ll_*.c", "STM32CubeWB/Drivers/STM32WBxx_HAL_Driver/Src/", exclude="*usb.c"
- )
- sources += Glob(
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci/*.c",
- source=True,
- )
- sources += Glob(
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/*_tl*.c",
- source=True,
- )
- sources += [
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/tl_mbox.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/svc/Src/svc_ctl.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_gap_aci.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_gatt_aci.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_hal_aci.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_hci_le.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_l2cap_aci.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/ble/core/template/osal.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/utilities/dbg_trace.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/utilities/otp.c",
- "STM32CubeWB/Middlewares/ST/STM32_WPAN/utilities/stm_list.c",
- ]
- lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
- libenv.Install("${LIB_DIST_DIR}", lib)
- Return("lib")
|