I2C. Comments cleanups.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3154 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
barthess 2011-07-12 18:34:11 +00:00
parent 621d794bf0
commit 71ebbf914f
1 changed files with 3 additions and 2 deletions

View File

@ -154,8 +154,9 @@ void _i2c_ev7_master_rec_byte_qued(I2CDriver *i2cp){
break;
case I2C_FLG_MASTER_RECEIVER:
/* some time in hi load cases possible to miss interrupt
* ??? TODO: really?*/
/* Some times in hi load scenarions it is possible to "miss" interrupt
* because STM32 I2C has OR'ed interrupt sources. This case handle that
* scenario. */
if (i2cp->rxbytes > 3){
*rxBuffp = dp->DR;
rxBuffp++;