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

#comment "MAC Protocol Modules"
config MAC_M
	bool "Enable MAC Module"
	help
	MAC Module

choice
	prompt "Select MAC"
	default NANO_MAC_M
	depends on MAC_M

	config NANO_MAC_M
		bool "Nano MAC"
		help
		Basic MAC algorithm with random backoff CSMA-CA retransmission.

#	config IEEE_802_15_4_MAC
#		bool "IEEE 802.15.4 standard MAC"
				
endchoice

config DEMO_MAC_M
	bool "Enable Recivable Address Range Setting by Software"
	depends on MAC_M
	help
	void nmac_set_rx_range(UINT16 min_addr, UINT16 max_addr)

