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
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
card10
firmware
Merge requests
!300
Fix: Use correct values for portexpander_out_put()
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Use correct values for portexpander_out_put()
Woazboat/firmware:woazboat/fix_portexpander_out_put
into
master
Overview
1
Commits
1
Pipelines
1
Changes
2
Merged
Woazboat
requested to merge
Woazboat/firmware:woazboat/fix_portexpander_out_put
into
master
5 years ago
Overview
1
Commits
1
Pipelines
1
Changes
2
Expand
Fixes the side led flashlight and display reset
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bc05058e
1 commit,
5 years ago
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
lib/card10/display.c
+
1
−
1
Options
@@ -22,7 +22,7 @@ void display_set_reset_pin(uint8_t state)
if
(
!
portexpander_detected
())
{
MAX77650_setDO
(
state
?
true
:
false
);
}
else
{
portexpander_out_put
(
PIN_4
,
state
);
portexpander_out_put
(
PIN_4
,
state
?
0xFF
:
0
);
}
}
Loading