Skip to content
Snippets Groups Projects
Commit f559b4dd authored by f4grx's avatar f4grx
Browse files

update config and defaults, fixes for latest nuttx

parent ab44a62a
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
config HN70AP_CONFIG
bool "system configuration app"
default y
default n
---help---
The config app manages the system settings.
......
......@@ -5,7 +5,7 @@
config HN70AP_RXT
bool "RX test"
default y
default n
---help---
Test Radio Reception.
......
......@@ -5,7 +5,7 @@
config HN70AP_SYSDAEMON
bool "system daemon"
default y
default n
---help---
The system daemon manages the ethernet link status, the oled screen, then starts nsh.
......
......@@ -142,7 +142,7 @@ int sysdaemon_main(int argc, char *argv[])
printf("aux radio cb installed ok\n");
}
#if defined(CONFIG_EXAMPLES_NSH)
#if defined(CONFIG_SYSTEM_NSH)
printf("*** Launching nsh\n");
nsh_main(argc, argv);
#endif
......
......@@ -5,7 +5,7 @@
config HN70AP_TXT
bool "TX test"
default y
default n
---help---
Test Radio Transmission.
......
This diff is collapsed.
openocd \
-f interface/stlink-v2.cfg \
-c "transport select hla_swd" \
-c "reset_config none separate" \
-f target/stm32f4x.cfg
# -f interface/stlink-v2.cfg \
# -c "transport select hla_swd" \
openocd \
-f interface/stlink-v2.cfg \
-c "transport select hla_swd" \
-c "reset_config none separate" \
-f target/stm32f4x.cfg \
-c "program nuttx verify reset exit"
#init required before reset becomes available
#exit required to avoid running openocd as a server
openocd \
-f interface/stlink-v2.cfg \
-c "transport select hla_swd" \
-c "reset_config none separate" \
-f target/stm32f4x.cfg \
-c "init" \
-c "reset run" \
-c "exit"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment