Skip to content

Commit

Permalink
Firmware: makes Kconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocio committed Apr 8, 2022
1 parent 22682cd commit 2e3d2c6
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 1 deletion.
24 changes: 24 additions & 0 deletions firmware/Kconfig
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
4 changes: 4 additions & 0 deletions firmware/network/Kconfig
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
3 changes: 3 additions & 0 deletions firmware/network/udp_client/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "UDP Client"
# TO DO
endmenu
3 changes: 3 additions & 0 deletions firmware/network/udp_server/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "UDP Server"
# TO DO
endmenu
3 changes: 3 additions & 0 deletions firmware/sys/Kconfig
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
3 changes: 3 additions & 0 deletions firmware/sys/at_client/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "AT Client"
# TO DO
endmenu
3 changes: 3 additions & 0 deletions firmware/sys/serialization/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "Serialization"
# TO DO
endmenu
3 changes: 3 additions & 0 deletions firmware/sys/storage/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "Storage"
# TO DO
endmenu
2 changes: 1 addition & 1 deletion firmware/sys/uniqueid/Kconfig
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"
Expand Down

0 comments on commit 2e3d2c6

Please sign in to comment.