Fixed bug #472.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6877 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
6f08d653f6
commit
d57fe5ccdf
|
@ -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);
|
||||||
|
|
|
@ -112,6 +112,8 @@
|
||||||
(backported to 2.6.4).
|
(backported to 2.6.4).
|
||||||
- FIX: Fixed wrong TIM1 and TIM8 macros in STM32F30x HAL driver (bug #473)
|
- FIX: Fixed wrong TIM1 and TIM8 macros in STM32F30x HAL driver (bug #473)
|
||||||
(backported to 2.6.4).
|
(backported to 2.6.4).
|
||||||
|
- FIX: Fixed chprintf()/chSequentialStreamWrite() crash with size of 0
|
||||||
|
or NULL (bug #472)(backported to 2.6.4).
|
||||||
- FIX: Fixed STM32 SDC driver clock activation issue (bug #464)(backported to
|
- FIX: Fixed STM32 SDC driver clock activation issue (bug #464)(backported to
|
||||||
- FIX: Fixed simulated IO message is corrupted in simulator (bug #468)
|
- FIX: Fixed simulated IO message is corrupted in simulator (bug #468)
|
||||||
(backported to 2.6.4).
|
(backported to 2.6.4).
|
||||||
|
|
Loading…
Reference in New Issue