nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches

◆ last_word_clocks

uint8_t hrt_xfer_data_t::last_word_clocks

Amount of clock pulses for last word. Due to hardware limitation, in case when last word clock pulse count is 1, the penultimate word has to share its bits with last word, for example: buffer length = 36bits, bus_width = QUAD, last_word_clocks would be:(buffer_length%32)/QUAD = 1 so: penultimate_word_clocks = 32-BITS_IN_BYTE last_word_clocks = (buffer_length%32)/QUAD + BITS_IN_BYTE last_word = penultimate_word>>24 | last_word<<8.