Skip to content
Snippets Groups Projects
Commit f97b1e53 authored by ch3's avatar ch3 Committed by schneider
Browse files

fix(splashscreen): Print version correctly

parent 1427ed31
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,9 @@ int main(void)
LOG_DEBUG("startup", "Initializing hardware ...");
hardware_early_init();
char *commit_buf = CARD10_GITHASH;
epic_disp_print (0, 5, "version", 0xffff, 0x0000);
epic_disp_print (0, 24, version_buf, 0xffff, 0x0000);
char *version_buf = CARD10_VERSION;
epic_disp_print (0, 5, "version/tag", 0xffff, 0x0000);
epic_disp_print (0, 24, version_buf, 0xffff, 0x0000);
epic_disp_update();
mxc_delay(2000000);
......
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