aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-01 20:17:58 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-01 20:17:58 +0000
commit62608271adb730505a4a3d0a9ef49ef2efe91552 (patch)
tree55148b4aecb862b55ba943172faccecbec7b8c67 /os/hal/src
parent750f1f4ae6ce75e0cbd8d6923b026376b607ffad (diff)
downloadChibiOS-62608271adb730505a4a3d0a9ef49ef2efe91552.tar.gz
ChibiOS-62608271adb730505a4a3d0a9ef49ef2efe91552.tar.bz2
ChibiOS-62608271adb730505a4a3d0a9ef49ef2efe91552.zip
I2C. Code compiles but does not work.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3548 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r--os/hal/src/i2c.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/os/hal/src/i2c.c b/os/hal/src/i2c.c
index abd3252cf..0f46e4e64 100644
--- a/os/hal/src/i2c.c
+++ b/os/hal/src/i2c.c
@@ -111,10 +111,6 @@ void i2cStart(I2CDriver *i2cp, const I2CConfig *config) {
"i2cStart(), #1",
"invalid state");
-#if (!(STM32_I2C_I2C2_USE_POLLING_WAIT) && I2C_SUPPORTS_CALLBACKS)
- gptStart(i2cp->timer, i2cp->timer_cfg);
-#endif /* !(STM32_I2C_I2C2_USE_POLLING_WAIT) */
-
chSysLock();
i2cp->id_config = config;
i2c_lld_start(i2cp);
@@ -136,10 +132,6 @@ void i2cStop(I2CDriver *i2cp) {
"i2cStop(), #1",
"invalid state");
-#if (!(STM32_I2C_I2C2_USE_POLLING_WAIT) && I2C_SUPPORTS_CALLBACKS)
- gptStop(i2cp->timer);
-#endif /* !(STM32_I2C_I2C2_USE_POLLING_WAIT) */
-
chSysLock();
i2c_lld_stop(i2cp);
i2cp->id_state = I2C_STOP;