diff options
author | Evan Lojewski <github@meklort.com> | 2020-07-18 16:05:44 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-18 16:05:44 -0600 |
commit | 9fa97cc0e28e438f4f9fb10f311185dc6a18e674 (patch) | |
tree | b6207419e52a3be3e83bfef149add9ef3da1c229 /ape/main.c | |
parent | fb75521c041370e045eb1812aa257d5ebd2ffd32 (diff) | |
download | bcm5719-ortega-9fa97cc0e28e438f4f9fb10f311185dc6a18e674.tar.gz bcm5719-ortega-9fa97cc0e28e438f4f9fb10f311185dc6a18e674.zip |
debug: Fix ape console initialization (#93)
Diffstat (limited to 'ape/main.c')
-rw-r--r-- | ape/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -337,7 +337,10 @@ bool handle_reset(void) void __attribute__((noreturn)) __start() { bool full_init = handle_reset(); - full_init = full_init || reset_ape_console(); + if (reset_ape_console()) + { + full_init = true; + } printf("APE v" STRINGIFY(VERSION_MAJOR) "." STRINGIFY(VERSION_MINOR) "." STRINGIFY(VERSION_PATCH) " NCSI Port " STRINGIFY(NETWORK_PORT) "\n"); gPort = Network_getPort(NETWORK_PORT); |