加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
xqy 提交于 2022-12-04 10:11 . first commit
cmake_minimum_required(VERSION 3.12)
# Pull in SDK (must be before project)
include(pico_sdk_import.cmake)
project(pico-threadx C CXX ASM)
# Initialize the SDK
pico_sdk_init()
#add_definitions(-DSysTick_Handler=isr_systick)
add_executable(pico-threadx src/main.c src/tx_initialize_low_level.S )
pico_add_extra_outputs(pico-threadx)
set(THREADX_ARCH "cortex_m0")
set(THREADX_TOOLCHAIN "gnu")
add_subdirectory(../threadx-6.2.0_rel threadx)
target_link_libraries(pico-threadx pico_stdlib cmsis_core threadx)
add_compile_options(-Wall
-Wno-format # int != int32_t as far as the compiler is concerned because gcc has int32_t as long int
-Wno-unused-function # we have some for the docs that aren't called
-Wno-maybe-uninitialized
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化