This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

nrf_drv_twi_tx return error 0x10

Hello,

I have this code

if (NRF_SUCCESS!=nrf_drv_twi_tx(&m_twi,devAddr,&regAddr,1,true))
		return false;
		
	unsigned int err_code = nrf_drv_twi_tx(&m_twi,devAddr,data,length,false);

and the second nrf_drv_twi_tx returns error 0x10 with devAddr = 0x69 regAddr = 0x6F length = 0x01

I have a lot of writes before work correctly but this one always fails.

I am on nRF52 with SDK 11 alpha.

Related