mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
98822bff98
Since the i2c bus is bidirectional, there are certain states (eg. part way through a read) where the slave device is in control of driving the SDA line. On a cold start (power on), the slave devices are all quiescent and will not drive the bus. However, on a warm start (eg. watchdog or jtag restart), it is possible that as the CPU boots, the slave device may be holding the SDA line low. This is a bus busy condition and will prevent the I2C bus master in the CPU from being able to seize the bus during init. The fix for this is to clock the i2c bus sufficiently to ensure that the the slave device finishes its transaction and releases the bus. Once the slave has released the bus, the bus master can properly initialize and assert a STOP condition on the bus. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1349 ebee16cc-31ac-478f-84a7-5cbb03baadba
61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
/**
|
|
******************************************************************************
|
|
* @addtogroup PIOS PIOS Core hardware abstraction layer
|
|
* @{
|
|
* @addtogroup PIOS_I2C I2C Functions
|
|
* @{
|
|
*
|
|
* @file pios_i2c.h
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
* Parts by Thorsten Klose (tk@midibox.org)
|
|
* @brief I2C functions header.
|
|
* @see The GNU Public License (GPL) Version 3
|
|
*
|
|
*****************************************************************************/
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef PIOS_I2C_H
|
|
#define PIOS_I2C_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
/* Global Types */
|
|
enum pios_i2c_txn_direction {
|
|
PIOS_I2C_TXN_READ,
|
|
PIOS_I2C_TXN_WRITE
|
|
};
|
|
|
|
struct pios_i2c_txn {
|
|
uint16_t addr;
|
|
enum pios_i2c_txn_direction rw;
|
|
uint32_t len;
|
|
uint8_t * buf;
|
|
};
|
|
|
|
/* Public Functions */
|
|
extern int32_t PIOS_I2C_Init(void);
|
|
extern bool PIOS_I2C_Transfer(uint8_t i2c, const struct pios_i2c_txn txn_list[], uint32_t num_txns);
|
|
extern void PIOS_I2C_EV_IRQ_Handler(uint8_t i2c);
|
|
extern void PIOS_I2C_ER_IRQ_Handler(uint8_t i2c);
|
|
|
|
#endif /* PIOS_I2C_H */
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
*/
|