I'm using a Pi3 to control a PLL (ADF4351) which requires an initial load of 6 32 bit config words to be sent via SPI, MSB first.
I've succesfully used BCM2835 to handle SPI before with a MCP23S17 so I know the library works and is installed correctly.
But, the 32 bit word thing, perhaps I'm missing something (likely) but I can't work out how to transfer more than 16 bits in one go, I can of course 'twiddle' the data to make it work with bcm2835_spi_write but that feels unnecessarily awkward and not a little inelegant so, is it possible to do a 32 bit transfer using BCM2835 elegantly or do I need to start bit shifting and masking?
Any advice (except use another language) welcome and thanks in advance,
Clint