git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6879 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2014-04-22 11:22:06 +00:00
parent ce7758eb01
commit 5ba4cc9696
1 changed files with 4 additions and 4 deletions

View File

@ -246,12 +246,12 @@ unsigned_common:
chSequentialStreamPut(chp, (uint8_t)*s++); chSequentialStreamPut(chp, (uint8_t)*s++);
i--; i--;
} }
do do {
chSequentialStreamPut(chp, (uint8_t)filler); chSequentialStreamPut(chp, (uint8_t)filler);
while (++width != 0); } while (++width != 0);
} }
chSequentialStreamWrite(chp, (uint8_t*)s, i); while (--i >= 0)
s += i; chSequentialStreamPut(chp, (uint8_t)*s++);
while (width) { while (width) {
chSequentialStreamPut(chp, (uint8_t)filler); chSequentialStreamPut(chp, (uint8_t)filler);