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
Branches
No related tags found
No related merge requests found
...@@ -18,13 +18,11 @@ int main(void) ...@@ -18,13 +18,11 @@ int main(void)
LOG_DEBUG("startup", "Initializing hardware ..."); LOG_DEBUG("startup", "Initializing hardware ...");
hardware_early_init(); hardware_early_init();
char *commit_buf = "Commit: " CARD10_GITHASH; char *commit_buf = CARD10_GITHASH;
char *version_buf = "Version: " CARD10_VERSION; epic_disp_print (0, 5, "version", 0xffff, 0x0000);
commit_buf[16] = '\0'; epic_disp_print (0, 24, version_buf, 0xffff, 0x0000);
epic_disp_print (5, 5, "card10 firmware", 0x0000, 0xffff); epic_disp_update();
epic_disp_print (25, 5, version_buf, 0x0000, 0xffff); mxc_delay(2000000);
epic_disp_print (45, 5, commit_buf, 0x0000, 0xffff);
mxc_delay(5000000);
LOG_DEBUG("startup", "Initializing tasks ..."); LOG_DEBUG("startup", "Initializing tasks ...");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment