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 7, 2022
1 parent f347547 commit ed222c5
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 1 deletion.
13 changes: 13 additions & 0 deletions firmware/Kconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
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
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 ed222c5

Please sign in to comment.