Skip to content
Closed

sx1262 #3220

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions examples/sx1262_test/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config EXAMPLES_SX1262_TEST
tristate "\"Sx1262_test, World!\" example"
default n
---help---
Enable the \"Sx1262_test, World!\" example

if EXAMPLES_SX1262_TEST

config EXAMPLES_SX1262_TEST_PROGNAME
string "Program name"
default "sx1262_test"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.

config EXAMPLES_SX1262_TEST_PRIORITY
int "Sx1262_test task priority"
default 100

config EXAMPLES_SX1262_TEST_STACKSIZE
int "Sx1262_test stack size"
default DEFAULT_TASK_STACKSIZE

endif
23 changes: 23 additions & 0 deletions examples/sx1262_test/Make.defs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
############################################################################
# apps/examples/sx1262_test/Make.defs
#
# 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.
#
############################################################################

ifneq ($(CONFIG_EXAMPLES_SX1262_TEST),)
CONFIGURED_APPS += $(APPDIR)/examples/sx1262_test
endif
34 changes: 34 additions & 0 deletions examples/sx1262_test/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
############################################################################
# apps/examples/sx1262_test/Make.defs
#
# 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.
#
############################################################################

include $(APPDIR)/Make.defs

# Sx1262_test, World! built-in application info

PROGNAME = $(CONFIG_EXAMPLES_SX1262_TEST_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_SX1262_TEST_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_SX1262_TEST_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_SX1262_TEST)

# Sx1262_test, World! Example

MAINSRC = sx1262_test_main.c

include $(APPDIR)/Application.mk
Loading