From 0af4a1c954b379d787154abe7b0deb082687aae2 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 6 Jul 2020 09:24:54 +0000 Subject: [PATCH] Fixed bug #1109. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13738 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/LLD/I2Cv3/hal_i2c_lld.h | 1 + readme.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/os/hal/ports/STM32/LLD/I2Cv3/hal_i2c_lld.h b/os/hal/ports/STM32/LLD/I2Cv3/hal_i2c_lld.h index 906217233..ee29a4e0c 100644 --- a/os/hal/ports/STM32/LLD/I2Cv3/hal_i2c_lld.h +++ b/os/hal/ports/STM32/LLD/I2Cv3/hal_i2c_lld.h @@ -380,6 +380,7 @@ #endif #if STM32_I2C_USE_I2C4 +#define STM32_I2C_BDMA_REQUIRED #if !defined(STM32_BDMA_REQUIRED) #define STM32_BDMA_REQUIRED #endif diff --git a/readme.txt b/readme.txt index 06ce46e79..d4143aac8 100644 --- a/readme.txt +++ b/readme.txt @@ -77,6 +77,8 @@ - NEW: Added a new setting to STM32 USBv1 allowing for some clock deviation from 48MHz. Renamed setting USB_HOST_WAKEUP_DURATION to STM32_USB_HOST_WAKEUP_DURATION for consistency. +- FIX: Fixed missing STM32_I2C_BDMA_REQUIRED definition in I2Cv3 driver + (bug #1109). - FIX: Fixed wrong definitions in SPC563M board files (bug #1108). - FIX: Fixed cortex-M vectors table alignment problem (bug #1107). - FIX: Fixed extra condition in MAC driver macWaitTransmitDescriptor() function