Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
multipass
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
multipass
Compare revisions
960f1be9c02cdaddceb2c943f3756ac4ca282cde to ef9d29ee0ecef0da260388300f354de48b1032c1
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
derf/multipass
Select target project
No results found
ef9d29ee0ecef0da260388300f354de48b1032c1
Select Git revision
Branches
main
Swap
Target
derf/multipass
Select target project
derf/multipass
1 result
960f1be9c02cdaddceb2c943f3756ac4ca282cde
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
ssd1306.h: Fix initialization for 32px high vertical addressing mode
· e4aec9f8
Birte Kristina Friesel
authored
1 year ago
e4aec9f8
ssd1306test app requires vertical addressing mode
· ef9d29ee
Birte Kristina Friesel
authored
1 year ago
ef9d29ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/driver/ssd1306.h
+1
-1
1 addition, 1 deletion
include/driver/ssd1306.h
src/app/ssd1306test/Kconfig
+3
-1
3 additions, 1 deletion
src/app/ssd1306test/Kconfig
with
4 additions
and
2 deletions
include/driver/ssd1306.h
View file @
ef9d29ee
...
@@ -163,7 +163,7 @@ class SSD1306 {
...
@@ -163,7 +163,7 @@ class SSD1306 {
SSD1306_SET_COL_ADDR
,
0
,
127
,
SSD1306_SET_COL_ADDR
,
0
,
127
,
// reset page pointer
// reset page pointer
SSD1306_SET_PAGE_ADDR
,
0
,
7
SSD1306_SET_PAGE_ADDR
,
0
,
height
/
8
-
1
};
};
void
writeCommand
(
uint8_t
command
);
void
writeCommand
(
uint8_t
command
);
...
...
This diff is collapsed.
Click to expand it.
src/app/ssd1306test/Kconfig
View file @
ef9d29ee
...
@@ -3,4 +3,6 @@
...
@@ -3,4 +3,6 @@
# SPDX-License-Identifier: CC0-1.0
# SPDX-License-Identifier: CC0-1.0
prompt "SSD1306 Test"
prompt "SSD1306 Test"
depends on driver_ssd1306 && loop && !wakeup
depends on driver_ssd1306 && driver_ssd1306_mode_vertical
depends on loop
depends on !wakeup
This diff is collapsed.
Click to expand it.