mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-04 04:20:58 +00:00
stm32-f4discovery-cc256x: build all examples
This commit is contained in:
parent
8ec2012f53
commit
a14b9522a8
@ -33,9 +33,6 @@ enable_language(C ASM)
|
|||||||
# Core project settings
|
# Core project settings
|
||||||
project(${CMAKE_PROJECT_NAME})
|
project(${CMAKE_PROJECT_NAME})
|
||||||
|
|
||||||
# Create an executable object type
|
|
||||||
add_executable(${CMAKE_PROJECT_NAME})
|
|
||||||
|
|
||||||
# Add STM32CubeMX generated sources
|
# Add STM32CubeMX generated sources
|
||||||
add_subdirectory(cmake/stm32cubemx)
|
add_subdirectory(cmake/stm32cubemx)
|
||||||
|
|
||||||
@ -46,53 +43,101 @@ set(BSP_COMPONENTS cs43l22 lis302dl lis3dsh)
|
|||||||
# Include BSP
|
# Include BSP
|
||||||
include(cmake/bsp.cmake)
|
include(cmake/bsp.cmake)
|
||||||
|
|
||||||
set( EXAMPLES "a2dp_sink_demo" )
|
|
||||||
|
|
||||||
# ovewrite from environment if given
|
|
||||||
if( DEFINED ENV{EXAMPLES} )
|
|
||||||
set(EXAMPLES $ENV{EXAMPLES})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Build information
|
# Build information
|
||||||
message("Build: ${CMAKE_BUILD_TYPE}")
|
message("Build: ${CMAKE_BUILD_TYPE}\n")
|
||||||
message("Example: ${EXAMPLES}\n")
|
|
||||||
|
|
||||||
# Include BTStack
|
# Include BTStack
|
||||||
include (cmake/btstack.cmake)
|
include(cmake/btstack.cmake)
|
||||||
|
|
||||||
# Add CC256x Support and specify init script
|
# Add CC256x Support and specify init script
|
||||||
set(CC256X_INIT_SCRIPT bluetooth_init_cc2564C_1.5.c)
|
set(CC256X_INIT_SCRIPT bluetooth_init_cc2564C_1.5.c)
|
||||||
include(${BTSTACK_ROOT}/chipset/cc256x/cc256x.cmake)
|
include(${BTSTACK_ROOT}/chipset/cc256x/cc256x.cmake)
|
||||||
|
|
||||||
# Link directories setup
|
# create targets for all examples
|
||||||
target_link_directories(${CMAKE_PROJECT_NAME} PRIVATE
|
file(GLOB EXAMPLES_C "../../example/*.c")
|
||||||
# Add user defined library search paths
|
list(SORT EXAMPLES_C)
|
||||||
)
|
file(GLOB EXAMPLES_GATT "../../example/*.gatt")
|
||||||
|
|
||||||
# Add sources to executable
|
# remove some
|
||||||
target_sources(${CMAKE_PROJECT_NAME} PRIVATE
|
file(GLOB EXAMPLES_OFF
|
||||||
# Add user sources here
|
"../../example/*demo_util*.c"
|
||||||
port/hal_audio_f4discovery.c
|
"../../example/ant_test.c"
|
||||||
port/hal_flash_bank_stm32.c
|
"../../example/avrcp_browsing_client.c"
|
||||||
port/port.c
|
"../../example/mesh_node_demo.c"
|
||||||
${SOURCES_EXAMPLE}
|
"../../example/le_audio*"
|
||||||
|
"../../example/panu_demo.c"
|
||||||
)
|
)
|
||||||
|
list(REMOVE_ITEM EXAMPLES_C ${EXAMPLES_OFF})
|
||||||
|
|
||||||
# Add include paths
|
# .gatt files in src
|
||||||
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE
|
file(GLOB GATT_FILES "../../src/*/gatt-service/*.gatt")
|
||||||
# Add user defined include paths
|
|
||||||
port
|
|
||||||
)
|
|
||||||
|
|
||||||
# Add project symbols (macros)
|
# on Mac 10.14, adding lwip to libstack results in a yet not understood link error
|
||||||
target_compile_definitions(${CMAKE_PROJECT_NAME} PRIVATE
|
# workaround: add lwip sources only to lwip_examples
|
||||||
# Add user defined symbols
|
set (LWIP_EXAMPLES pan_lwip_http_server)
|
||||||
)
|
|
||||||
|
|
||||||
# Add linked libraries
|
# Create targets
|
||||||
target_link_libraries(${CMAKE_PROJECT_NAME}
|
foreach(EXAMPLE_FILE ${EXAMPLES_C})
|
||||||
stm32cubemx
|
# Extract the base name of the file (e.g., a2dp_sink_demo.c -> a2dp_sink_demo)
|
||||||
# Add user defined libraries
|
get_filename_component(EXAMPLE ${EXAMPLE_FILE} NAME_WE)
|
||||||
bsp
|
|
||||||
btstack
|
# get c file
|
||||||
)
|
set (SOURCES_EXAMPLE ${BTSTACK_ROOT}/example/${EXAMPLE}.c)
|
||||||
|
|
||||||
|
# add SCO Demo util
|
||||||
|
if ("hfp_ag_demo hfp_hf_demo hsp_hs_demo hsp_ag_demo" MATCHES ${EXAMPLE})
|
||||||
|
list(APPEND SOURCES_EXAMPLE ${BTSTACK_ROOT}/example/sco_demo_util.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# add lwip sources for lwip examples
|
||||||
|
if ( "${LWIP_EXAMPLES}" MATCHES ${EXAMPLE} )
|
||||||
|
list(APPEND SOURCES_EXAMPLE ${SOURCES_LWIP})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# add GATT DB creation
|
||||||
|
if ( "${EXAMPLES_GATT}" MATCHES ${EXAMPLE} )
|
||||||
|
message("example ${EXAMPLE} -- with GATT DB")
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${EXAMPLE}.h
|
||||||
|
DEPENDS ${BTSTACK_ROOT}/example/${EXAMPLE}.gatt ${GATT_FILES}
|
||||||
|
COMMAND ${Python_EXECUTABLE}
|
||||||
|
ARGS ${BTSTACK_ROOT}/tool/compile_gatt.py ${BTSTACK_ROOT}/example/${EXAMPLE}.gatt ${CMAKE_CURRENT_BINARY_DIR}/${EXAMPLE}.h
|
||||||
|
)
|
||||||
|
list(APPEND SOURCES_EXAMPLE ${CMAKE_CURRENT_BINARY_DIR}/${EXAMPLE}.h)
|
||||||
|
else()
|
||||||
|
message("example ${EXAMPLE}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Create an executable target for the example
|
||||||
|
add_executable(${EXAMPLE} ${SOURCES_EXAMPLE} )
|
||||||
|
|
||||||
|
# Add project symbols (macros)
|
||||||
|
target_compile_definitions(${EXAMPLE} PRIVATE
|
||||||
|
# Add user-defined symbols
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add include paths
|
||||||
|
target_include_directories(${EXAMPLE} PRIVATE
|
||||||
|
# Add user defined include paths
|
||||||
|
port
|
||||||
|
)
|
||||||
|
|
||||||
|
# Link directories and libraries
|
||||||
|
target_link_directories(${EXAMPLE} PRIVATE
|
||||||
|
# Add user-defined library search paths
|
||||||
|
)
|
||||||
|
target_link_libraries(${EXAMPLE}
|
||||||
|
stm32cubemx
|
||||||
|
bsp
|
||||||
|
btstack
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add sources to the example
|
||||||
|
target_sources(${EXAMPLE} PRIVATE
|
||||||
|
# Add user sources here
|
||||||
|
port/hal_audio_f4discovery.c
|
||||||
|
port/hal_flash_bank_stm32.c
|
||||||
|
port/port.c
|
||||||
|
${SOURCES_EXAMPLE}
|
||||||
|
)
|
||||||
|
endforeach()
|
@ -43,7 +43,7 @@ list(APPEND INCLUDES_PATH . )
|
|||||||
list(APPEND INCLUDES_PATH port )
|
list(APPEND INCLUDES_PATH port )
|
||||||
include_directories( ${INCLUDES_PATH} )
|
include_directories( ${INCLUDES_PATH} )
|
||||||
|
|
||||||
file(GLOB SOURCES_SRC "${BTSTACK_ROOT}/src/*.c" ) #"${BTSTACK_ROOT}/example/sco_demo_util.c")
|
file(GLOB SOURCES_SRC "${BTSTACK_ROOT}/src/*.c" )
|
||||||
|
|
||||||
file(GLOB SOURCES_BLE "${BTSTACK_ROOT}/src/ble/*.c")
|
file(GLOB SOURCES_BLE "${BTSTACK_ROOT}/src/ble/*.c")
|
||||||
file(GLOB SOURCES_GATT "${BTSTACK_ROOT}/src/ble/gatt-service/*.c")
|
file(GLOB SOURCES_GATT "${BTSTACK_ROOT}/src/ble/gatt-service/*.c")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user