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

fix(splashscreen): Display useful version info

parent d65034fe
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
#include "FreeRTOS.h"
#include "task.h"
#include "mxc_delay.h"
#include <stdlib.h>
#include <string.h>
......@@ -17,9 +18,13 @@ int main(void)
LOG_DEBUG("startup", "Initializing hardware ...");
hardware_early_init();
epic_disp_print (5, 5, "card10 firmware", 0x0000, 0xffff);
epic_disp_print (5, 5, "Tag: v1.1", 0x0000, 0xffff);
epic_disp_print (5, 5, "Commit: f54e3c0", 0x0000, 0xffff);
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);
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