Fixed bug #1048.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13071 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
31fc75d32a
commit
998d8cee1b
|
@ -148,7 +148,7 @@ static void i2c_lld_set_clock(I2CDriver *i2cp) {
|
|||
|
||||
osalDbgCheck((i2cp != NULL) &&
|
||||
(clock_speed > 0) &&
|
||||
(clock_speed <= 4000000));
|
||||
(clock_speed <= 400000));
|
||||
|
||||
/* CR2 Configuration.*/
|
||||
dp->CR2 &= (uint16_t)~I2C_CR2_FREQ;
|
||||
|
|
|
@ -126,6 +126,8 @@
|
|||
- HAL: Added a new interface for range-finder devices (used by EX).
|
||||
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
|
||||
- NIL: Integrated NIL 4.0.
|
||||
- FIX: Fixed wrong debug check in STM32 I2Cv1 driver (bug #1048)
|
||||
(backported to 19.1.4)(backported to 18.2.3).
|
||||
- FIX: Fixed warning in simulator PAL driver (bug #1047)
|
||||
(backported to 19.1.4)(backported to 18.2.3).
|
||||
- FIX: Fixed board initialization failure on STM32F030x6 (bug #1046)
|
||||
|
|
Loading…
Reference in New Issue