git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5590 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2013-04-14 09:12:49 +00:00
parent c02afef7df
commit 4e220bdc67
2 changed files with 3 additions and 0 deletions

View File

@ -196,6 +196,8 @@ void chprintf(BaseSequentialStream *chp, const char *fmt, ...) {
break; break;
case 'D': case 'D':
case 'd': case 'd':
case 'I':
case 'i':
if (is_long) if (is_long)
l = va_arg(ap, long); l = va_arg(ap, long);
else else

View File

@ -89,6 +89,7 @@
***************************************************************************** *****************************************************************************
*** 2.5.2 *** *** 2.5.2 ***
- FIX: Fixed add %i to chprintf (bug #401).
- FIX: Fixed STM32F051 various (bug #400). - FIX: Fixed STM32F051 various (bug #400).
- FIX: Fixed STM32F103 HSI configuration (bug #399). - FIX: Fixed STM32F103 HSI configuration (bug #399).
- FIX: Fixed patch to allow simulator to be restarted quicker (bug #398). - FIX: Fixed patch to allow simulator to be restarted quicker (bug #398).