From e8b4a97d7d1a109688b0d1264adc4a81224a2d2c Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Thu, 2 Feb 2017 23:47:30 +0100 Subject: [PATCH] nrf5/hal: Line wrapping params in hal_spi.c to make it easier to read. --- nrf5/hal/hal_spi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nrf5/hal/hal_spi.c b/nrf5/hal/hal_spi.c index e710a89be3..86758e840f 100644 --- a/nrf5/hal/hal_spi.c +++ b/nrf5/hal/hal_spi.c @@ -95,7 +95,10 @@ void hal_spi_master_init(NRF_SPI_Type * p_instance, hal_spi_init_t const * p_spi p_instance->ENABLE = (SPI_ENABLE_ENABLE_Enabled << SPI_ENABLE_ENABLE_Pos); } -void hal_spi_master_tx_rx(NRF_SPI_Type * p_instance, uint16_t transfer_size, const uint8_t * tx_data, uint8_t * rx_data) { +void hal_spi_master_tx_rx(NRF_SPI_Type * p_instance, + uint16_t transfer_size, + const uint8_t * tx_data, + uint8_t * rx_data) { uint16_t number_of_txd_bytes = 0;