Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in writeBytes method for nRF51 #360

Merged
merged 1 commit into from
Feb 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions nRF51/I2CDev/I2Cdev.cpp
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@ THE SOFTWARE.
extern "C"{
#include "nrf_drv_twi.h"
#include "app_util_platform.h"
#include <string.h> // For memcpy
}
#include "I2Cdev.h"
static nrf_drv_twi_t m_twi=NRF_DRV_TWI_INSTANCE(0);
@@ -212,10 +213,15 @@ bool I2Cdev::writeByte(uint8_t devAddr, uint8_t regAddr, uint8_t data) {
* @return Status of operation (true = success)
*/
bool I2Cdev::writeBytes(uint8_t devAddr, uint8_t regAddr, uint8_t length, uint8_t* data) {
if (NRF_SUCCESS!=nrf_drv_twi_tx(&m_twi,devAddr,&regAddr,1,true))
return false;
return NRF_SUCCESS==nrf_drv_twi_tx(&m_twi,devAddr,data,length,false);
const uint8_t buf_len = length+1; // Register address + number of bytes
uint8_t tx_buf[buf_len];

tx_buf[0] = regAddr;
memcpy(tx_buf+1, data, length);

return NRF_SUCCESS == nrf_drv_twi_tx(&m_twi, devAddr, tx_buf, buf_len, true);
}

/** Write single word to a 16-bit device register.
* @param devAddr I2C slave device address
* @param regAddr Register address to write to
@@ -225,6 +231,7 @@ bool I2Cdev::writeBytes(uint8_t devAddr, uint8_t regAddr, uint8_t length, uint8_
bool I2Cdev::writeWord(uint8_t devAddr, uint8_t regAddr, uint16_t data) {
return writeWords(devAddr, regAddr, 1, &data);
}

/** Write multiple words to a 16-bit device register.
* @param devAddr I2C slave device address
* @param regAddr First register address to write to