freebird2ya / u8glib

Automatically exported from code.google.com/p/u8glib
Other
0 stars 0 forks source link

u8g_DrawStr90P tries to read flash pointer from ram #332

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
"while( *s != '\0' )" should be something like "while( u8g_pgm_read(s) != '\0' 
)".

Original issue reported on code.google.com by darkbo...@gmail.com on 21 Mar 2015 at 7:56

GoogleCodeExporter commented 8 years ago
ups... yes, true. a bug.

fixed in the code (two more procedures affected). testing required.

Original comment by olikr...@gmail.com on 22 Mar 2015 at 7:59

GoogleCodeExporter commented 8 years ago
Works fine now, thanks.

Original comment by darkbo...@gmail.com on 22 Mar 2015 at 6:37