projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix unfinished printer host demo - some printer languages use embedded NULLs and...
[pub/lufa.git]
/
Demos
/
Host
/
LowLevel
/
StillImageHost
/
StillImageHost.c
diff --git
a/Demos/Host/LowLevel/StillImageHost/StillImageHost.c
b/Demos/Host/LowLevel/StillImageHost/StillImageHost.c
index
dfc7cb7
..
5cfaf46
100644
(file)
--- a/
Demos/Host/LowLevel/StillImageHost/StillImageHost.c
+++ b/
Demos/Host/LowLevel/StillImageHost/StillImageHost.c
@@
-352,7
+352,7
@@
void UnicodeToASCII(uint8_t* UnicodeString, char* Buffer)
/* Loop through the entire unicode string */
\r
while (CharactersRemaining--)
\r
{
\r
/* Loop through the entire unicode string */
\r
while (CharactersRemaining--)
\r
{
\r
- /* Load in the next unicode character (only the lower byte,
only Unicode coded ASCII
supported) */
\r
+ /* Load in the next unicode character (only the lower byte,
as only Unicode coded ASCII is
supported) */
\r
*(Buffer++) = *UnicodeString;
\r
\r
/* Jump to the next unicode character */
\r
*(Buffer++) = *UnicodeString;
\r
\r
/* Jump to the next unicode character */
\r