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

fix(splashscreen): Reduce to version

parent 13ad01e8
No related branches found
No related tags found
1 merge request!156Ch3/splashscreen
......@@ -18,13 +18,11 @@ int main(void)
LOG_DEBUG("startup", "Initializing hardware ...");
hardware_early_init();
char *commit_buf = "Commit: " CARD10_GITHASH;
char *version_buf = "Version: " CARD10_VERSION;
commit_buf[16] = '\0';
epic_disp_print (5, 5, "card10 firmware", 0x0000, 0xffff);
epic_disp_print (25, 5, version_buf, 0x0000, 0xffff);
epic_disp_print (45, 5, commit_buf, 0x0000, 0xffff);
mxc_delay(5000000);
char *commit_buf = CARD10_GITHASH;
epic_disp_print (0, 5, "version", 0xffff, 0x0000);
epic_disp_print (0, 24, version_buf, 0xffff, 0x0000);
epic_disp_update();
mxc_delay(2000000);
LOG_DEBUG("startup", "Initializing tasks ...");
......
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