#
# For a description of the syntax of this configuration file,
# see doc/kbuild/kconfig-language.txt.
#

#comment "Routing Protocol Modules"
config ROUTING_M
	bool "Enable Routing Module"
	depends on NANO_MAC_M
	help
	Module for Multi-hop RF communication
choice
	prompt "Select Routing Protocol"
	default TENO_M
	depends on ROUTING_M && KERNEL_M

	config RENO_M
		bool "RENO routing (Beta)"
		depends on ROUTING_M
	       select DEMO_MAC_M
		help
		(R)eactive (E)TRI (N)anoQplus (O)S routing algorithm for mesh network. (on-demand)

	config TENO_M
		bool "TENO routing (Beta)"
		depends on ROUTING_M
		help
		Tree-based ETRI NanoQplus OS routing protocol for tree network.


endchoice		
