git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5782 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2013-06-01 08:15:09 +00:00
parent 74bc33cf80
commit 09b9d8de34
2 changed files with 2 additions and 1 deletions

View File

@ -137,7 +137,7 @@ void chprintf(BaseSequentialStream *chp, const char *fmt, ...) {
left_align = TRUE;
}
filler = ' ';
if (*fmt == '.') {
if ((*fmt == '.') || (*fmt == '0')) {
fmt++;
filler = '0';
}

View File

@ -92,6 +92,7 @@
- FIX: Fixed lwipthread.h should explicitly include lwip/opts.h (bug #414).
- FIX: Fixed STM32_PLLI2SCLKOUT miscalculated (bug #413)(backported to 2.4.4).
- FIX: Fixed wrong RTC vector name in STM32F1/F4/L1 EXT drivers (bug #412).
- FIX: Fixed fill character error in chprintf (bug #411).
- FIX: Fixed wrong STM32 USBv1 driver behavior (bug #410).
- FIX: Fixed STM32 wrong peripherals reset procedure (bug #409)(backported
to 2.4.4).