Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
7e2aed94
Commit
7e2aed94
authored
8 years ago
by
Pierre-noel Bouteville
Committed by
Gregory Nutt
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Correct conditioinal compilation in ST7565 driver
parent
426e425a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/lcd/st7565.c
+2
-2
2 additions, 2 deletions
drivers/lcd/st7565.c
with
2 additions
and
2 deletions
drivers/lcd/st7565.c
+
2
−
2
View file @
7e2aed94
...
...
@@ -1017,7 +1017,7 @@ FAR struct lcd_dev_s *st7565_initialize(FAR struct st7565_lcd_s *lcd,
/* Follow NHD-C12864KGZ DISPLAY INITIALIZATION... */
#ifdef
CONFIG_NHD_C12864KGZ
#if
def
ined(
CONFIG_NHD_C12864KGZ
)
(
void
)
st7565_send_one_data
(
priv
,
ST7565_BIAS_1_9
);
...
...
@@ -1027,7 +1027,7 @@ FAR struct lcd_dev_s *st7565_initialize(FAR struct st7565_lcd_s *lcd,
(
void
)
st7565_send_one_data
(
priv
,
ST7565_POWERCTRL_INT
);
(
void
)
st7565_send_one_data
(
priv
,
ST7565_SETSTARTLINE
);
#elif CONFIG_ERC_12864_3
#elif
defined(
CONFIG_ERC_12864_3
)
(
void
)
st7565_send_one_data
(
priv
,
ST7565_ADCNORMAL
);
(
void
)
st7565_send_one_data
(
priv
,
ST7565_SETCOMREVERSE
);
...
...
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