Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
esp8266-oled-ssd1306
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
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
c3pb
esp8266-oled-ssd1306
Commits
5f6f263c
Commit
5f6f263c
authored
8 years ago
by
Daniel Eichhorn
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #50 from squix78/fix-non-drawable-detection
Fix detection of non drawable characters
parents
e9ea4802
1aa2ac38
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
OLEDDisplay.cpp
+1
-1
1 addition, 1 deletion
OLEDDisplay.cpp
with
1 addition
and
1 deletion
OLEDDisplay.cpp
+
1
−
1
View file @
5f6f263c
...
@@ -362,7 +362,7 @@ void OLEDDisplay::drawStringInternal(int16_t xMove, int16_t yMove, char* text, u
...
@@ -362,7 +362,7 @@ void OLEDDisplay::drawStringInternal(int16_t xMove, int16_t yMove, char* text, u
byte
currentCharWidth
=
pgm_read_byte
(
fontData
+
JUMPTABLE_START
+
charCode
*
JUMPTABLE_BYTES
+
JUMPTABLE_WIDTH
);
// Width
byte
currentCharWidth
=
pgm_read_byte
(
fontData
+
JUMPTABLE_START
+
charCode
*
JUMPTABLE_BYTES
+
JUMPTABLE_WIDTH
);
// Width
// Test if the char is drawable
// Test if the char is drawable
if
(
msbJumpToChar
!
=
255
&&
lsbJumpToChar
!
=
255
)
{
if
(
!
(
msbJumpToChar
=
=
255
&&
lsbJumpToChar
=
=
255
)
)
{
// Get the position of the char data
// Get the position of the char data
uint16_t
charDataPosition
=
JUMPTABLE_START
+
sizeOfJumpTable
+
((
msbJumpToChar
<<
8
)
+
lsbJumpToChar
);
uint16_t
charDataPosition
=
JUMPTABLE_START
+
sizeOfJumpTable
+
((
msbJumpToChar
<<
8
)
+
lsbJumpToChar
);
drawInternal
(
xPos
,
yPos
,
currentCharWidth
,
textHeight
,
fontData
,
charDataPosition
,
charByteSize
);
drawInternal
(
xPos
,
yPos
,
currentCharWidth
,
textHeight
,
fontData
,
charDataPosition
,
charByteSize
);
...
...
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