-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
37 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
menu "Border Router" | ||
|
||
menu "INTERFACE" | ||
config WIRED_INTERFACE | ||
int "WIRED" | ||
default 0 | ||
|
||
config WIRELESS_INTERFACE | ||
int "WIRELESS" | ||
default 1 | ||
|
||
config ADDRESS_IPV6_WIRED | ||
string "Wired address IPV6" | ||
default "2001:db8:1::1" | ||
|
||
config ADDRESS_IPV6_WIRELESS | ||
string "Wireless address IPV6" | ||
default "2001:db8:2::1" | ||
|
||
endmenu # Prefix | ||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
rsource "../../firmware/network/rpl_protocol/Kconfig" | ||
rsource "../../firmware/network/border_router/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
menu "PHY settings" | ||
#comment "PHY settings" | ||
config TX_POWER | ||
int "Default TX Power" | ||
default 0 | ||
|
||
config RADIO_CHANNEL | ||
int "Default Radio Channel" | ||
default 11 | ||
|
||
endmenu #Phy | ||
rsource "../../firmware/network/radio/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
menu "PHY settings" | ||
#comment "PHY settings" | ||
config TX_POWER | ||
int "Default TX Power" | ||
default 0 | ||
|
||
config RADIO_CHANNEL | ||
int "Default Radio Channel" | ||
default 11 | ||
|
||
endmenu #Phy | ||
rsource "../../firmware/network/rpl_protocol/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1 @@ | ||
menu "Uniqueid" | ||
|
||
config SELECT_HEADER_IPV6 | ||
bool "Edit IPV6 Header" | ||
default n | ||
|
||
menu "Change default IPV6 header" | ||
visible if SELECT_HEADER_IPV6 | ||
#comment "Header using in unique cpuid address" | ||
|
||
config HEADER_ADDRESS_ID | ||
string "IPV6 HEADER" | ||
default "2001:db8:" | ||
|
||
endmenu # Change default IPV6 header | ||
|
||
menu "Subnet" | ||
choice IPV6_MODE | ||
prompt "Select IPV6 Subnet mode" | ||
config MODE_STATIC | ||
bool "STATIC" | ||
|
||
config MODE_RANDOM | ||
bool "RANDOM" | ||
|
||
config MODE_MANUAL | ||
bool "MANUAL" | ||
|
||
endchoice | ||
|
||
config SUBNET_ADDRESS_ID | ||
string "IPV6 SUBNET" | ||
default "1111:2222" | ||
depends on MODE_MANUAL | ||
|
||
endmenu # Prefix | ||
endmenu | ||
rsource "../../firmware/sys/uniqueid/Kconfig" |