Reorder includes.
[bertos.git] / bertos / cpu / cortex-m3 / io / stm32_i2c.h
index 56f265404e37e9e693e48b6939d272ff04c02a9d..1f6b3adb76c90c451fca5f714940446b7ad4ab4a 100644 (file)
 /* I2C CCR mask */
 #define CCR_CCR_SET             ((uint16_t)0x0FFF)
 
+
+/* I2C CR1 */
+#define CR1_POS                                 11
+
 /* I2C Status */
-#define SR1_BUSY                                 1
-#define SR1_MSL                                  0
+#define SR1_PECERR                              12
+#define SR1_OVR                                 11
+#define SR1_AF                                  10
+#define SR1_ARLO                                 9
+#define SR1_BERR                                 8
+#define SR1_TXE                                  7
+#define SR1_RXE                                  6
+#define SR1_ADDR                                 1
+#define SR1_BTF                                  2
+#define SR1_SB                                   0
+
+#define SR2_TRA                                  2
+#define SR2_BUSY                                 1
+#define SR2_MSL                                  0
+
+
+#define SR1_ERR_MASK        (BV(SR1_PECERR) | \
+                                                        BV(SR1_OVR)    | \
+                                                        BV(SR1_AF)     | \
+                                                        BV(SR1_ARLO)   | \
+                                                        BV(SR1_BERR))
 
-#define SR2_SB                                   0
 
 
 struct stm32_i2c