Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jannis Rieger
firmware
Commits
f97b1e53
Commit
f97b1e53
authored
Aug 21, 2019
by
ch3
Committed by
schneider
Aug 21, 2019
Browse files
fix(splashscreen): Print version correctly
parent
1427ed31
Changes
1
Hide whitespace changes
Inline
Side-by-side
epicardium/main.c
View file @
f97b1e53
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment