Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bitmap_font_3x5.c #804

Merged
merged 1 commit into from
Feb 3, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions libs/graphics/bitmap_font_3x5.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define LCD_FONT_3X5_CHARS 95
const unsigned short LCD_FONT_3X5[] = { // from 33 up to 127
PACK_5_TO_16( _X_ , X_X , _X_ , _X_ , X_X ), // !"#$%
PACK_5_TO_16( _X_ , ___ , XXX_ , XX__ , __X ),
PACK_5_TO_16( _X_ , ___ , XXX , XX_ , __X ),
PACK_5_TO_16( _X_ , ___ , _X_ , XXX , _X_ ),
PACK_5_TO_16( ___ , ___ , XXX , _XX , X__ ),
PACK_5_TO_16( _X_ , ___ , _X_ , _X_ , X_X ),
Expand Down Expand Up @@ -61,9 +61,9 @@ const unsigned short LCD_FONT_3X5[] = { // from 33 up to 127
PACK_5_TO_16( _X_ , _X_ , _X_ , XXX , _X_ ),
PACK_5_TO_16( ___ , ___ , X__ , ___ , __X ),
PACK_5_TO_16( _X_ , _X_ , _X_ , XXX , _X_ ),
PACK_5_TO_16( ___ , X__ , __X , ___ , X__ )
PACK_5_TO_16( ___ , X__ , __X , ___ , X__ ),

PACK_5_TO_16( _X_ , _X_ , _X , XX_ , _XX ), // ?@ABC
PACK_5_TO_16( _X_ , _X_ , _X_ , XX_ , _XX ), // ?@ABC
PACK_5_TO_16( X_X , X_X , X_X , X_X , X__ ),
PACK_5_TO_16( __X , XXX , XXX , XX_ , X__ ),
PACK_5_TO_16( ___ , X_X , X_X , X_X , X__ ),
Expand Down