diff options
| author | Zixun LI <[email protected]> | 2026-05-30 13:03:32 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-30 13:03:32 +0200 |
| commit | d3ae3a02a9a01b2f2a1ed16a463074e044178945 (patch) | |
| tree | 6bd843b73dd4ad8174bd546d5646665f195293d5 /examples/device/board_test | |
| parent | 6f59b79a6cad1ade33f482e4db5246d65642699b (diff) | |
| parent | 08381d44214135cc9ff9423de837cb466b6ad701 (diff) | |
Merge pull request #3634 from HKM-Messtechnik/fix/Dwc2Stm32U5
dwc2: preserve EP0 status completion before SETUP
Diffstat (limited to 'examples/device/board_test')
| -rw-r--r-- | examples/device/board_test/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/device/board_test/CMakeLists.txt b/examples/device/board_test/CMakeLists.txt index bd7b8e0ca..f14d72c08 100644 --- a/examples/device/board_test/CMakeLists.txt +++ b/examples/device/board_test/CMakeLists.txt @@ -2,6 +2,11 @@ cmake_minimum_required(VERSION 3.20) include(${CMAKE_CURRENT_SOURCE_DIR}/../../../hw/bsp/family_support.cmake) +# Need to set Espressif defaults before project() is called +if(FAMILY STREQUAL "espressif") + list(APPEND SDKCONFIG_DEFAULTS "${CMAKE_CURRENT_LIST_DIR}/sdkconfig.defaults") +endif() + project(board_test C CXX ASM) # Checks this example is valid for the family and initializes the project |
