Dev/STM32I2C

From PaparazziUAV
Revision as of 04:12, 15 April 2011 by Poine (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page is a work document about STM32 I2C driver


Documentation

STM32F10xxx Cortex-M3 programming manual

STM32F101xC/D/E and STM32F103xC/D/E Errata sheet

RM0008 Reference manual ( page 726 )

Problem

We're implementing a "Master" driver.

The I2C peripheral on STM32 is very "timing sensitive".

It has been experienced that we can not rely on "events" like described in the reference manual and need to implement our own state machine in order to be able to deal with the timing sensitivity of the hardware.

Goals

-1 never crash the MCU
-2 never crash the peripheral
-3 never provide corrupted data
-4 get as few failed transferts as possible