Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
PetePriority
firmware
Commits
6d6d45eb
Verified
Commit
6d6d45eb
authored
Aug 28, 2019
by
Rahix
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(epicardium): Adjust version-splash colors
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
63086117
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
epicardium/main.c
epicardium/main.c
+3
-3
No files found.
epicardium/main.c
View file @
6d6d45eb
...
...
@@ -28,9 +28,9 @@ int main(void)
*/
const
char
*
version_buf
=
CARD10_VERSION
;
const
int
off
=
(
160
-
(
int
)
strlen
(
version_buf
)
*
14
)
/
2
;
epic_disp_clear
(
0x
9dc
0
);
epic_disp_print
(
10
,
20
,
"Epicardium"
,
0x
6c
20
,
0x
9dc
0
);
epic_disp_print
(
off
>
0
?
off
:
0
,
40
,
version_buf
,
0x
6c
20
,
0x
9dc
0
);
epic_disp_clear
(
0x
000
0
);
epic_disp_print
(
10
,
20
,
"Epicardium"
,
0x
fe
20
,
0x
000
0
);
epic_disp_print
(
off
>
0
?
off
:
0
,
40
,
version_buf
,
0x
fe
20
,
0x
000
0
);
epic_disp_update
();
mxc_delay
(
2000000
);
...
...
Write
Preview
Markdown
is supported
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