I am trying to build spi communication between nf52(master) and ads1192(slave). Can I use spi_master_with_spi_slave example directly in this case.
I am trying to build spi communication between nf52(master) and ads1192(slave). Can I use spi_master_with_spi_slave example directly in this case.
Thanks. I have run the spi master example. With the code I can transmit data to the winc1500, and can see the data ("nordic") on oscilloscope. Can I say that, if the jumpers are connected correctly, the spi transmission is successful?
As Atmel also provides examples on their MCU to control the Atmel wifi module WINC1500, I thought to reuse them on nRF52832, that's why I made effort the port the Atmel codes onto nRF52832.
I don't know how atmel libraries look like, but maybe you could just dig up their library for functions that are responsible for SPI transmission/reception, and just switch them to ones that nordic provides? maybe you will need some refactoring, but that should be possible...
yes, I am replacing the Atmel functions with Nordic functions in their wrapper source code. I will report when I make it done.