Fixed bug 3530924.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4247 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
ac2e9f7ffc
commit
0c7fd6e69a
|
@ -129,6 +129,7 @@ void _pal_lld_setgroupmode(ioportid_t port,
|
|||
case PAL_MODE_INPUT_PULLUP:
|
||||
port->dir &= ~mask;
|
||||
port->out |= mask;
|
||||
break;
|
||||
case PAL_MODE_OUTPUT_PUSHPULL:
|
||||
port->dir |= mask;
|
||||
break;
|
||||
|
|
|
@ -81,6 +81,8 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 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)
|
||||
(backported to 2.4.2).
|
||||
- FIX: Fixed wrong macro check in STM32 MAC driver (bug 3527179)(backported
|
||||
|
|
Loading…
Reference in New Issue