-
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
Rocio
committed
Apr 8, 2022
1 parent
22682cd
commit 2e3d2c6
Showing
9 changed files
with
47 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
menu "m4a-firmware configuration" | ||
rsource "peripherals/Kconfig" | ||
rsource "sys/Kconfig" | ||
rsource "network/Kconfig" | ||
|
||
menu "PHY settings" | ||
#comment "PHY settings" | ||
config TX_POWER | ||
string "TX Power" | ||
default "0" | ||
|
||
config RADIO_CHANNEL | ||
string "Radio Channel default" | ||
default "1" | ||
|
||
endmenu #Phy | ||
|
||
menu "Interface" | ||
#comment "Interface wifi and Radio" | ||
config WIFI_SUBSYSTEM | ||
bool "Wifi-Subsytem Interface" | ||
default y | ||
|
||
config IEEE_802154 | ||
bool "Radio Interface" | ||
default n | ||
endmenu #interface | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
menu "Network" | ||
rsource "udp_server/Kconfig" | ||
rsource "udp_client/Kconfig" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "UDP Client" | ||
# TO DO | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "UDP Server" | ||
# TO DO | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
menu "System" | ||
rsource "uniqueid/Kconfig" | ||
rsource "serialization/Kconfig" | ||
rsource "storage/Kconfig" | ||
rsource "at_client/Kconfig" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "AT Client" | ||
# TO DO | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "Serialization" | ||
# TO DO | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "Storage" | ||
# TO DO | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
menu "uniqueid" | ||
menu "Uniqueid" | ||
|
||
config SELECT_HEADER_IPV6 | ||
bool "Edit IPV6 Header" | ||
|