Skip to content
Kconfig 621 B
Newer Older
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.beacon in the NuttX tools repository.
#

config HN70AP_BEACON
	bool "RF beacon"
	default n
	---help---
		Radio beacon regularly transmitting packets on RF.

if HN70AP_BEACON

config HN70AP_BEACON_PROGNAME
	string "Program name"
	default "beacon"
	depends on BUILD_KERNEL
	---help---
		This is the name of the program that will be use when the NSH ELF
		program is installed.

config HN70AP_BEACON_PRIORITY
	int "beacon task priority"
	default 100

config HN70AP_BEACON_STACKSIZE
	int "beacon stack size"
	default 2048

endif