cmake: port nxscope and foc and add missing directories
This commit is contained in:
parent
5dba460f5f
commit
ed370ec674
@ -39,6 +39,7 @@ include_directories(include)
|
|||||||
include_directories(${NUTTX_APPS_BINDIR}/include)
|
include_directories(${NUTTX_APPS_BINDIR}/include)
|
||||||
|
|
||||||
add_subdirectory(audioutils)
|
add_subdirectory(audioutils)
|
||||||
|
add_subdirectory(benchmarks)
|
||||||
add_subdirectory(boot)
|
add_subdirectory(boot)
|
||||||
add_subdirectory(canutils)
|
add_subdirectory(canutils)
|
||||||
add_subdirectory(crypto)
|
add_subdirectory(crypto)
|
||||||
@ -49,12 +50,15 @@ add_subdirectory(gpsutils)
|
|||||||
add_subdirectory(graphics)
|
add_subdirectory(graphics)
|
||||||
add_subdirectory(industry)
|
add_subdirectory(industry)
|
||||||
add_subdirectory(interpreters)
|
add_subdirectory(interpreters)
|
||||||
|
add_subdirectory(logging)
|
||||||
|
add_subdirectory(lte)
|
||||||
add_subdirectory(math)
|
add_subdirectory(math)
|
||||||
add_subdirectory(mlearning)
|
add_subdirectory(mlearning)
|
||||||
add_subdirectory(modbus)
|
add_subdirectory(modbus)
|
||||||
add_subdirectory(netutils)
|
add_subdirectory(netutils)
|
||||||
add_subdirectory(nshlib)
|
add_subdirectory(nshlib)
|
||||||
add_subdirectory(platform)
|
add_subdirectory(platform)
|
||||||
|
add_subdirectory(sdr)
|
||||||
add_subdirectory(system)
|
add_subdirectory(system)
|
||||||
add_subdirectory(testing)
|
add_subdirectory(testing)
|
||||||
add_subdirectory(wireless)
|
add_subdirectory(wireless)
|
||||||
|
23
benchmarks/CMakeLists.txt
Normal file
23
benchmarks/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/benchmarks/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.
|
||||||
|
#
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
nuttx_add_subdirectory()
|
||||||
|
|
||||||
|
nuttx_generate_kconfig(MENUDESC "Benchmark Applications")
|
62
examples/foc/CMakeLists.txt
Normal file
62
examples/foc/CMakeLists.txt
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
############################################################################
|
||||||
|
# apps/examples/foc/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_EXAMPLES_FOC)
|
||||||
|
nuttx_add_application(
|
||||||
|
NAME
|
||||||
|
foc
|
||||||
|
SRCS
|
||||||
|
foc_main.c
|
||||||
|
STACKSIZE
|
||||||
|
${CONFIG_EXAMPLES_FOC_STACKSIZE}
|
||||||
|
PRIORITY
|
||||||
|
${CONFIG_EXAMPLES_FOC_PRIORITY})
|
||||||
|
|
||||||
|
set(CSRCS
|
||||||
|
foc_device.c
|
||||||
|
foc_mq.c
|
||||||
|
foc_thr.c
|
||||||
|
foc_intf.c)
|
||||||
|
|
||||||
|
if(CONFIG_BUILTIN)
|
||||||
|
list(APPEND CSRCS foc_parseargs.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# fixed16 support
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_FIXED16)
|
||||||
|
list(APPEND CSRCS foc_fixed16_thr.c foc_motor_b16.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# float32 support
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_FLOAT)
|
||||||
|
list(APPEND CSRCS foc_float_thr.c foc_motor_f32.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# NxScope support
|
||||||
|
|
||||||
|
if(CONFIG_EXAMPLES_FOC_NXSCOPE)
|
||||||
|
list(APPEND CSRCS foc_nxscope.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
target_sources(apps PRIVATE ${CSRCS})
|
||||||
|
|
||||||
|
endif()
|
31
examples/nxscope/CMakeLists.txt
Normal file
31
examples/nxscope/CMakeLists.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
############################################################################
|
||||||
|
# apps/examples/nxscope/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_EXAMPLES_NXSCOPE)
|
||||||
|
nuttx_add_application(
|
||||||
|
NAME
|
||||||
|
${CONFIG_EXAMPLES_NXSCOPE_PROGNAME}
|
||||||
|
SRCS
|
||||||
|
nxscope_main.c
|
||||||
|
STACKSIZE
|
||||||
|
${CONFIG_EXAMPLES_NXSCOPE_STACKSIZE}
|
||||||
|
PRIORITY
|
||||||
|
${CONFIG_EXAMPLES_NXSCOPE_PRIORITY})
|
||||||
|
endif()
|
@ -18,4 +18,6 @@
|
|||||||
#
|
#
|
||||||
# ##############################################################################
|
# ##############################################################################
|
||||||
|
|
||||||
|
nuttx_add_subdirectory()
|
||||||
|
|
||||||
nuttx_generate_kconfig(MENUDESC "Industrial Applications")
|
nuttx_generate_kconfig(MENUDESC "Industrial Applications")
|
||||||
|
156
industry/foc/CMakeLists.txt
Normal file
156
industry/foc/CMakeLists.txt
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/industry/foc/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_INDUSTRY_FOC)
|
||||||
|
|
||||||
|
set(CSRCS foc_utils.c)
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_FLOAT)
|
||||||
|
list(APPEND CSRCS
|
||||||
|
float/foc_ramp.c
|
||||||
|
float/foc_handler.c
|
||||||
|
float/foc_angle.c
|
||||||
|
float/foc_velocity.c
|
||||||
|
float/foc_routine.c)
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_OPENLOOP)
|
||||||
|
list(APPEND CSRCS float/foc_ang_openloop.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_ONFO)
|
||||||
|
list(APPEND CSRCS float/foc_ang_onfo.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_OSMO)
|
||||||
|
list(APPEND CSRCS float/foc_ang_osmo.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_QENCO)
|
||||||
|
list(APPEND CSRCS float/foc_ang_qenco.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_HALL)
|
||||||
|
list(APPEND CSRCS float/foc_ang_hall.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_CORDIC)
|
||||||
|
list(APPEND CSRCS float/foc_cordic.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_CONTROL_PI)
|
||||||
|
list(APPEND CSRCS float/foc_picontrol.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_MODULATION_SVM3)
|
||||||
|
list(APPEND CSRCS float/foc_svm3.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_HAVE_MODEL)
|
||||||
|
list(APPEND CSRCS float/foc_model.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_MODEL_PMSM)
|
||||||
|
list(APPEND CSRCS float/foc_model_pmsm.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ALIGN)
|
||||||
|
list(APPEND CSRCS float/foc_align.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_IDENT)
|
||||||
|
list(APPEND CSRCS float/foc_ident.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_VELOCITY_ODIV)
|
||||||
|
list(APPEND CSRCS float/foc_vel_odiv.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_VELOCITY_OPLL)
|
||||||
|
list(APPEND CSRCS float/foc_vel_opll.c)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_FIXED16)
|
||||||
|
list(APPEND CSRCS
|
||||||
|
fixed16/foc_ramp.c
|
||||||
|
fixed16/foc_handler.c
|
||||||
|
fixed16/foc_angle.c
|
||||||
|
fixed16/foc_velocity.c
|
||||||
|
fixed16/foc_routine.c)
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_OPENLOOP)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ang_openloop.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_ONFO)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ang_onfo.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_OSMO)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ang_osmo.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_QENCO)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ang_qenco.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ANGLE_HALL)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ang_hall.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_CORDIC)
|
||||||
|
list(APPEND CSRCS fixed16/foc_cordic.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_CONTROL_PI)
|
||||||
|
list(APPEND CSRCS fixed16/foc_picontrol.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_MODULATION_SVM3)
|
||||||
|
list(APPEND CSRCS fixed16/foc_svm3.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_HAVE_MODEL)
|
||||||
|
list(APPEND CSRCS fixed16/foc_model.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_MODEL_PMSM)
|
||||||
|
list(APPEND CSRCS fixed16/foc_model_pmsm.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_ALIGN)
|
||||||
|
list(APPEND CSRCS fixed16/foc_align.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_IDENT)
|
||||||
|
list(APPEND CSRCS fixed16/foc_ident.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_VELOCITY_ODIV)
|
||||||
|
list(APPEND CSRCS fixed16/foc_vel_odiv.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_INDUSTRY_FOC_VELOCITY_OPLL)
|
||||||
|
list(APPEND CSRCS fixed16/foc_vel_opll.c)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
target_sources(apps PRIVATE ${CSRCS})
|
||||||
|
endif()
|
23
logging/CMakeLists.txt
Normal file
23
logging/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/logging/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.
|
||||||
|
#
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
nuttx_add_subdirectory()
|
||||||
|
|
||||||
|
nuttx_generate_kconfig(MENUDESC "Logging Utilities")
|
21
logging/embedlog/CMakeLists.txt
Normal file
21
logging/embedlog/CMakeLists.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/logging/embedlog/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.
|
||||||
|
#
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
# TODO
|
37
logging/nxscope/CMakeLists.txt
Normal file
37
logging/nxscope/CMakeLists.txt
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/logging/nxscope/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_LOGGING_NXSCOPE)
|
||||||
|
set(CSRCS nxscope.c nxscope_chan.c nxscope_internals.c)
|
||||||
|
|
||||||
|
if(CONFIG_LOGGING_NXSCOPE_INTF_SERIAL)
|
||||||
|
list(APPEND CSRCS nxscope_iser.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_LOGGING_NXSCOPE_INTF_DUMMY)
|
||||||
|
list(APPEND CSRCS nxscope_idummy.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_LOGGING_NXSCOPE_PROTO_SER)
|
||||||
|
list(APPEND CSRCS nxscope_pser.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
target_sources(apps PRIVATE ${CSRCS})
|
||||||
|
endif()
|
23
lte/CMakeLists.txt
Normal file
23
lte/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/lte/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.
|
||||||
|
#
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
nuttx_add_subdirectory()
|
||||||
|
|
||||||
|
nuttx_generate_kconfig(MENUDESC "LTE Libraries and NSH Add-Ons")
|
23
sdr/CMakeLists.txt
Normal file
23
sdr/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ##############################################################################
|
||||||
|
# apps/sdr/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.
|
||||||
|
#
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
nuttx_add_subdirectory()
|
||||||
|
|
||||||
|
nuttx_generate_kconfig(MENUDESC "Software Define Radio Libraries")
|
Loading…
x
Reference in New Issue
Block a user