Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
firmware
Commits
4a01205c
Verified
Commit
4a01205c
authored
5 years ago
by
rahix
Browse files
Options
Downloads
Patches
Plain Diff
chore(epicardium): Rename style enums
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
8b6240f0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
epicardium/epicardium.h
+5
-5
5 additions, 5 deletions
epicardium/epicardium.h
epicardium/modules/display.c
+3
-3
3 additions, 3 deletions
epicardium/modules/display.c
with
8 additions
and
8 deletions
epicardium/epicardium.h
+
5
−
5
View file @
4a01205c
...
...
@@ -178,7 +178,7 @@ API(API_INTERRUPT_DISABLE, int epic_interrupt_disable(api_int_id_t int_id));
*/
/** Line-Style */
enum
linestyle
_t
{
enum
disp_
linestyle
{
/** */
LINESTYLE_FULL
=
0
,
/** */
...
...
@@ -186,7 +186,7 @@ enum linestyle_t {
};
/** Fill-Style */
enum
fillstyle
_t
{
enum
disp_
fillstyle
{
/** */
FILLSTYLE_EMPTY
=
0
,
/** */
...
...
@@ -269,7 +269,7 @@ API(API_DISP_LINE,
uint16_t
xend
,
uint16_t
yend
,
uint16_t
color
,
enum
linestyle
_t
linestyle
,
enum
disp_
linestyle
linestyle
,
uint16_t
pixelsize
)
);
...
...
@@ -294,7 +294,7 @@ API(API_DISP_RECT,
uint16_t
xend
,
uint16_t
yend
,
uint16_t
color
,
enum
fillstyle
_t
fillstyle
,
enum
disp_
fillstyle
fillstyle
,
uint16_t
pixelsize
)
);
...
...
@@ -317,7 +317,7 @@ API(API_DISP_CIRC,
uint16_t
y
,
uint16_t
rad
,
uint16_t
color
,
enum
fillstyle
_t
fillstyle
,
enum
disp_
fillstyle
fillstyle
,
uint16_t
pixelsize
)
);
...
...
This diff is collapsed.
Click to expand it.
epicardium/modules/display.c
+
3
−
3
View file @
4a01205c
...
...
@@ -52,7 +52,7 @@ int epic_disp_line(
uint16_t
xend
,
uint16_t
yend
,
uint16_t
color
,
enum
linestyle
_t
linestyle
,
enum
disp_
linestyle
linestyle
,
uint16_t
pixelsize
)
{
int
cl
=
check_lock
();
...
...
@@ -72,7 +72,7 @@ int epic_disp_rect(
uint16_t
xend
,
uint16_t
yend
,
uint16_t
color
,
enum
fillstyle
_t
fillstyle
,
enum
disp_
fillstyle
fillstyle
,
uint16_t
pixelsize
)
{
int
cl
=
check_lock
();
...
...
@@ -91,7 +91,7 @@ int epic_disp_circ(
uint16_t
y
,
uint16_t
rad
,
uint16_t
color
,
enum
fillstyle
_t
fillstyle
,
enum
disp_
fillstyle
fillstyle
,
uint16_t
pixelsize
)
{
int
cl
=
check_lock
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment