mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This commit adds daughterboard simulation to the simulator. There is a sim_dboard class which registers it's methods with the rpc server. These methods are visible over mpm as well as the mpm_shell. Signed-off-by: Samuel O'Brien <sam.obrien@ni.com>
18 lines
633 B
CMake
18 lines
633 B
CMake
#
|
|
# Copyright 2020 Ettus Research, a National Instruments Brand
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
########################################################################
|
|
# This file included, use CMake directory variables
|
|
########################################################################
|
|
|
|
set(USRP_MPM_FILES ${USRP_MPM_FILES})
|
|
set(USRP_MPM_SIMULATOR_FILES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/__init__.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sim_dboard.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sim_dboard_catalina.py
|
|
)
|
|
list(APPEND USRP_MPM_FILES ${USRP_MPM_SIMULATOR_FILES})
|
|
set(USRP_MPM_FILES ${USRP_MPM_FILES} PARENT_SCOPE)
|