2016-01-26 17:57:51 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* drivers/i2c/i2c_write.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2016-01-30 15:00:16 +01:00
|
|
|
#include <nuttx/i2c/i2c_master.h>
|
2016-01-26 17:57:51 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: i2c_write
|
|
|
|
*
|
|
|
|
* Description:
|
2016-02-02 02:52:16 +01:00
|
|
|
* Send a block of data on I2C. Each write operation will be an 'atomic'
|
2016-01-26 17:57:51 +01:00
|
|
|
* operation in the sense that any other I2C actions will be serialized
|
|
|
|
* and pend until this write completes.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - Device-specific state data
|
|
|
|
* config - Described the I2C configuration
|
|
|
|
* buffer - A pointer to the read-only buffer of data to be written to device
|
|
|
|
* buflen - The number of bytes to send from the buffer
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0: success, <0: A negated errno
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-01-30 15:36:47 +01:00
|
|
|
int i2c_write(FAR struct i2c_master_s *dev,
|
|
|
|
FAR const struct i2c_config_s *config,
|
2016-01-26 17:57:51 +01:00
|
|
|
FAR const uint8_t *buffer, int buflen)
|
|
|
|
{
|
|
|
|
struct i2c_msg_s msg;
|
|
|
|
|
|
|
|
/* Setup for the transfer */
|
|
|
|
|
2016-02-01 21:17:20 +01:00
|
|
|
msg.frequency = config->frequency,
|
|
|
|
msg.addr = config->address;
|
|
|
|
msg.flags = (config->addrlen == 10) ? I2C_M_TEN : 0;
|
|
|
|
msg.buffer = (FAR uint8_t *)buffer; /* Override const */
|
|
|
|
msg.length = buflen;
|
2016-01-26 17:57:51 +01:00
|
|
|
|
2016-02-01 21:17:20 +01:00
|
|
|
/* Then perform the transfer. */
|
2016-01-26 17:57:51 +01:00
|
|
|
|
|
|
|
return I2C_TRANSFER(dev, &msg, 1);
|
|
|
|
}
|