Skip to content
Snippets Groups Projects
Commit d1cfcabb authored by Alexander Oryshchenko's avatar Alexander Oryshchenko Committed by Gregory Nutt
Browse files

arch/arm/src/stm32/stm32f40xxx_i2c.c: Correct some recent changes to STM32F4...

arch/arm/src/stm32/stm32f40xxx_i2c.c:  Correct some recent changes to STM32F4 I2C that broke poll mode of operation.
parent a7e56359
No related branches found
No related tags found
No related merge requests found
......@@ -1273,7 +1273,7 @@ static int stm32_i2c_isr_process(struct stm32_i2c_priv_s *priv)
if (priv->dcnt == -1 && priv->msgc != 0 && (status & I2C_SR1_SB) == 0)
{
#ifdef CONFIG_STM32_I2C_DMA
#if defined(CONFIG_STM32_I2C_DMA) || defined(CONFIG_I2C_POLLED)
return OK;
#else
priv->status |= I2C_SR1_TIMEOUT;
......@@ -2049,7 +2049,7 @@ static int stm32_i2c_isr_process(struct stm32_i2c_priv_s *priv)
/* Clear interrupt flags */
#ifndef CONFIG_STM32_I2C_DMA
#if !defined(CONFIG_STM32_I2C_DMA) && !defined(CONFIG_I2C_POLLED)
state_error:
#endif
stm32_i2c_putreg(priv, STM32_I2C_SR1_OFFSET, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment