summaryrefslogtreecommitdiff
path: root/hw/bsp
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-01-24 00:44:17 +0700
committerhathach <[email protected]>2021-01-24 00:44:17 +0700
commit959a94b98d020ee2f6a05e36be56c1618dd6ed78 (patch)
treeab0fe01d362ce176f3e69217b1e5bb036b04bc27 /hw/bsp
parentffad6eaf80900a858e22378e68de8b21b96c769e (diff)
rp2040 audio_test compile
Diffstat (limited to 'hw/bsp')
-rw-r--r--hw/bsp/rp2040/family.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/hw/bsp/rp2040/family.cmake b/hw/bsp/rp2040/family.cmake
index ef6c9f41f..dd0123ded 100644
--- a/hw/bsp/rp2040/family.cmake
+++ b/hw/bsp/rp2040/family.cmake
@@ -1,14 +1,3 @@
-cmake_minimum_required(VERSION 3.12)
-
-set(PICO_SDK_PATH ${TOP}/hw/mcu/raspberrypi/pico-sdk)
-include(${PICO_SDK_PATH}/pico_sdk_init.cmake)
-
-project(${PROJECT})
-
-pico_sdk_init()
-
-add_executable(${PROJECT})
-
# TinyUSB Stack source
set(SRC_TINYUSB
${TOP}/src/tusb.c
@@ -43,7 +32,3 @@ target_compile_definitions(${PROJECT} PUBLIC
CFG_TUSB_MCU=OPT_MCU_RP2040
CFG_TUSB_OS=OPT_OS_PICO
)
-
-target_link_libraries(${PROJECT} pico_stdlib)
-
-pico_add_extra_outputs(${PROJECT})