I have a project requiring a bluetooth chip (nrf8001) and an SPI flash memory module.
Prior to calling lib_aci_init, I can read and write the flash memory. After init, I cannot. Is there any reason the ACI lib would be disabling SPI for other devices?
aci_lib_init
and where did you get it? A Google search for that term finds only this question. – David Graysonlib_aci_init
, which is probably what you meant to type in this question. – David GraysonSPI.setBitOrder(LSBFIRST); SPI.setClockDivider(SPI_CLOCK_DIV8); SPI.setDataMode(SPI_MODE0);
– Zack Newsham