aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/platforms/AVR/pal_lld.c1
-rw-r--r--readme.txt2
2 files changed, 3 insertions, 0 deletions
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