From 0c7fd6e69ab72d5f26e90544c46d7662b2843105 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 30 May 2012 20:56:09 +0000 Subject: Fixed bug 3530924. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4247 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/AVR/pal_lld.c | 1 + readme.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/os/hal/platforms/AVR/pal_lld.c b/os/hal/platforms/AVR/pal_lld.c index 31ab0140a..fa2c647df 100644 --- a/os/hal/platforms/AVR/pal_lld.c +++ b/os/hal/platforms/AVR/pal_lld.c @@ -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; diff --git a/readme.txt b/readme.txt index c20f296f5..36b2dd1bb 100644 --- a/readme.txt +++ b/readme.txt @@ -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 -- cgit v1.2.3