ae03313473
Signed-off-by: xuxingliang <xuxingliang@xiaomi.com>
99 lines
3.1 KiB
CMake
99 lines
3.1 KiB
CMake
# ##############################################################################
|
|
# drivers/segger/CMakeLists.txt
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
# license agreements. See the NOTICE file distributed with this work for
|
|
# additional information regarding copyright ownership. The ASF licenses this
|
|
# file to you under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy of
|
|
# the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations under
|
|
# the License.
|
|
#
|
|
# ##############################################################################
|
|
|
|
if(CONFIG_SEGGER_RTT OR CONFIG_SEGGER_SYSVIEW)
|
|
if(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/SystemView)
|
|
|
|
set(SYSVIEW_VERSION 354)
|
|
|
|
FetchContent_Declare(
|
|
systemview
|
|
DOWNLOAD_NAME "SystemView.zip"
|
|
DOWNLOAD_DIR ${CMAKE_CURRENT_LIST_DIR}
|
|
URL "https://www.segger.com/downloads/systemview/SystemView_Src_V${SYSVIEW_VERSION}.zip"
|
|
SOURCE_DIR
|
|
${CMAKE_CURRENT_LIST_DIR}/SystemView
|
|
BINARY_DIR
|
|
${CMAKE_BINARY_DIR}/SystemView
|
|
DOWNLOAD_NO_PROGRESS true
|
|
TIMEOUT 30)
|
|
|
|
FetchContent_GetProperties(systemview)
|
|
|
|
if(NOT systemview_POPULATED)
|
|
FetchContent_Populate(systemview)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(CONFIG_SEGGER_RTT)
|
|
nuttx_add_kernel_library(RTT)
|
|
|
|
set(RTT_SRCS SystemView/SEGGER/SEGGER_RTT.c)
|
|
|
|
if(CONFIG_SEGGER_RTT_SECTION)
|
|
target_compile_options(
|
|
RTT PRIVATE -DSEGGER_RTT_SECTION=${CONFIG_SEGGER_RTT_SECTION})
|
|
endif()
|
|
|
|
if(CONFIG_SEGGER_RTT_BUFFER_SECTION)
|
|
target_compile_options(
|
|
RTT
|
|
PRIVATE -DSEGGER_RTT_BUFFER_SECTION=${CONFIG_SEGGER_RTT_BUFFER_SECTION})
|
|
endif()
|
|
|
|
if(CONFIG_ARCH_ARMV7M)
|
|
list(APPEND RTT_SRCS SystemView/SEGGER/SEGGER_RTT_ASM_ARMv7M.S)
|
|
endif()
|
|
|
|
if(CONFIG_STREAM_RTT)
|
|
list(APPEND RTT_SRCS stream_rtt.c)
|
|
endif()
|
|
|
|
if(CONFIG_SYSLOG_RTT)
|
|
list(APPEND RTT_SRCS syslog_rtt.c)
|
|
endif()
|
|
|
|
if(CONFIG_NOTE_RTT)
|
|
list(APPEND RTT_SRCS note_rtt.c)
|
|
endif()
|
|
|
|
if(CONFIG_SERIAL_RTT)
|
|
list(APPEND RTT_SRCS serial_rtt.c)
|
|
endif()
|
|
|
|
target_compile_options(RTT PRIVATE -Wno-shadow -Wno-pointer-to-int-cast)
|
|
target_sources(RTT PRIVATE ${RTT_SRCS})
|
|
target_include_directories(RTT PRIVATE config SystemView/SEGGER)
|
|
endif()
|
|
|
|
if(CONFIG_SEGGER_SYSVIEW)
|
|
nuttx_add_kernel_library(SystemView)
|
|
|
|
target_compile_options(SystemView PRIVATE -Wno-shadow
|
|
-Wno-pointer-to-int-cast)
|
|
target_sources(SystemView PRIVATE note_sysview.c
|
|
SystemView/SEGGER/SEGGER_SYSVIEW.c)
|
|
|
|
target_include_directories(SystemView PRIVATE ${NUTTX_DIR}/sched config
|
|
RTT/RTT SystemView/SEGGER)
|
|
|
|
endif()
|