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
!73
Implement portexpander button callbacks + change portexpander API to match GPIO
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implement portexpander button callbacks + change portexpander API to match GPIO
Woazboat/firmware:woazboat/pb
into
master
Overview
18
Commits
4
Pipelines
22
Changes
8
Merged
Woazboat
requested to merge
Woazboat/firmware:woazboat/pb
into
master
5 years ago
Overview
9
Commits
4
Pipelines
22
Changes
8
Expand
0
0
Merge request reports
Compare
master
version 21
54165a3d
5 years ago
version 20
3d2afa36
5 years ago
version 19
2fa1945c
5 years ago
version 18
47224cbc
5 years ago
version 17
fd9aec29
5 years ago
version 16
3c85d43f
5 years ago
version 15
4c516651
5 years ago
version 14
531943fe
5 years ago
version 13
aa7cdb8e
5 years ago
version 12
ebb10d50
5 years ago
version 11
41ef12b9
5 years ago
version 10
94a640ef
5 years ago
version 9
f3b37987
5 years ago
version 8
ca67af86
5 years ago
version 7
378cfa14
5 years ago
version 6
700af010
5 years ago
version 5
6cd25692
5 years ago
version 4
c6482266
5 years ago
version 3
c49d68a0
5 years ago
version 2
f81b7e65
5 years ago
version 1
741d21a3
5 years ago
master (base)
and
latest version
latest version
a858261f
4 commits,
5 years ago
version 21
54165a3d
5 commits,
5 years ago
version 20
3d2afa36
5 commits,
5 years ago
version 19
2fa1945c
5 commits,
5 years ago
version 18
47224cbc
4 commits,
5 years ago
version 17
fd9aec29
4 commits,
5 years ago
version 16
3c85d43f
3 commits,
5 years ago
version 15
4c516651
3 commits,
5 years ago
version 14
531943fe
3 commits,
5 years ago
version 13
aa7cdb8e
3 commits,
5 years ago
version 12
ebb10d50
3 commits,
5 years ago
version 11
41ef12b9
3 commits,
5 years ago
version 10
94a640ef
3 commits,
5 years ago
version 9
f3b37987
3 commits,
5 years ago
version 8
ca67af86
3 commits,
5 years ago
version 7
378cfa14
3 commits,
5 years ago
version 6
700af010
3 commits,
5 years ago
version 5
6cd25692
3 commits,
5 years ago
version 4
c6482266
2 commits,
5 years ago
version 3
c49d68a0
3 commits,
5 years ago
version 2
f81b7e65
3 commits,
5 years ago
version 1
741d21a3
2 commits,
5 years ago
8 files
+
525
−
78
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
epicardium/modules/buttons.c
+
1
−
1
Options
@@ -26,7 +26,7 @@ uint8_t epic_buttons_read(uint8_t mask)
* Not using PB_Get() here as that performs one I2C transcation
* per button.
*/
uint8_t
pin_status
=
~
portexpander_get
();
uint8_t
pin_status
=
~
portexpander_
in_
get
(
0xFF
);
hwlock_release
(
HWLOCK_I2C
);
Loading