projects
/
hackover2013-badge-firmware.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Levelreihenfolge, -fixes.
[hackover2013-badge-firmware.git]
/
drivers
/
displays
/
bitmap
/
ssd1306
/
ssd1306.c
diff --git
a/drivers/displays/bitmap/ssd1306/ssd1306.c
b/drivers/displays/bitmap/ssd1306/ssd1306.c
index
6812b34
..
304d1ec
100644
(file)
--- a/
drivers/displays/bitmap/ssd1306/ssd1306.c
+++ b/
drivers/displays/bitmap/ssd1306/ssd1306.c
@@
-216,7
+216,7
@@
static void ssd1306DrawChar(uint16_t x, uint16_t y, uint8_t c, struct FONT_DEF f
// Retrieve appropriate columns from font data
for (col = 0; col < font.u8Width; col++)
{
// Retrieve appropriate columns from font data
for (col = 0; col < font.u8Width; col++)
{
- column[col] = font.au8FontTable[((c -
32
) * font.u8Width) + col]; // Get first column of appropriate character
+ column[col] = font.au8FontTable[((c -
font.u8FirstChar
) * font.u8Width) + col]; // Get first column of appropriate character
}
}
else
}
}
else
This page took
0.019651 seconds
and
4
git commands to generate.