nrf5/hal: Updating twi master tx with stop parameter.

This commit is contained in:
Glenn Ruben Bakke 2017-01-30 23:05:27 +01:00
parent ed976e07fe
commit 5004a6f811
1 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@
#ifndef HAL_TWI_H__
#define HAL_TWI_H__
#include <stdbool.h>
#include "nrf.h"
#define TWI_BASE_POINTERS (const uint32_t[]){NRF_TWI0_BASE, NRF_TWI1_BASE}
@ -101,7 +102,8 @@ void hal_twi_master_init(NRF_TWI_Type * p_instance, hal_twi_init_t const * p_twi
void hal_twi_master_tx(NRF_TWI_Type * p_instance,
uint8_t addr,
uint16_t transfer_size,
const uint8_t * tx_data);
const uint8_t * tx_data,
bool stop);
void hal_twi_master_rx(NRF_TWI_Type * p_instance,
uint8_t addr,