Fixed bug 3530924.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4247 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-05-30 20:56:09 +00:00
parent ac2e9f7ffc
commit 0c7fd6e69a
2 changed files with 3 additions and 0 deletions

View File

@ -129,6 +129,7 @@ void _pal_lld_setgroupmode(ioportid_t port,
case PAL_MODE_INPUT_PULLUP: case PAL_MODE_INPUT_PULLUP:
port->dir &= ~mask; port->dir &= ~mask;
port->out |= mask; port->out |= mask;
break;
case PAL_MODE_OUTPUT_PUSHPULL: case PAL_MODE_OUTPUT_PUSHPULL:
port->dir |= mask; port->dir |= mask;
break; break;

View File

@ -81,6 +81,8 @@
***************************************************************************** *****************************************************************************
*** 2.5.0 *** *** 2.5.0 ***
- FIX: Fixed missing "break" in AVR PAL driver (bug 3530924)(backported
to 2.4.2).
- FIX: Fixed timeout related race condition in STM32 I2C driver (bug 3530043) - FIX: Fixed timeout related race condition in STM32 I2C driver (bug 3530043)
(backported to 2.4.2). (backported to 2.4.2).
- FIX: Fixed wrong macro check in STM32 MAC driver (bug 3527179)(backported - FIX: Fixed wrong macro check in STM32 MAC driver (bug 3527179)(backported