Skip to content
Snippets Groups Projects
Commit 1ec49f08 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

STM32 F3 fixes from John Wharington

parent 120a3604
No related branches found
No related tags found
No related merge requests found
......@@ -5385,4 +5385,5 @@
is disconnected, it needs to provide the FunctionAddress to the
USB HCD disconnect method so that the HCD will know which port
is being disconnected (2013-8-12).
* nuttx/arch/arm/src/stm32/Kconfig, Make.defs, and /stm32f30xxx_i2c.c:
STM32 F3 I2C fixes from John Wharington (2013-8-13).
......@@ -2225,7 +2225,6 @@ config STM32_DAC1_TIMER
config STM32_DAC1_TIMER_FREQUENCY
int "DAC1 timer frequency"
default 0
range 0 14
endif
......
......@@ -106,7 +106,7 @@ CHIP_CSRCS += stm32_userspace.c stm32_mpuinit.c
endif
ifeq ($(CONFIG_STM32_STM32F30XX),y)
CHIP_CSRCS += stm32f30xx_i2c.c
CHIP_CSRCS += stm32f30xxx_i2c.c
else
CHIP_CSRCS += stm32_i2c.c
endif
......
......@@ -1438,6 +1438,7 @@ static int stm32_i2c_isr(struct stm32_i2c_priv_s *priv)
{
stm32_i2c_traceevent(priv, I2CEVENT_BTFRESTART, priv->msgc);
/* ??? */
stm32_i2c_sendstart(priv);
}
}
else if (priv->msgv)
......
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