Other Parts Discussed in Thread: CC2650
Tool/software: Code Composer Studio
Hi,
I'm trying to using SPI in CC2650MODA and I fix bitRate to 1MHz but the device after works with other communication frequency (~10KHz).
This is my parameters configuration:
SPI_Params_init(&spiParams);
spiParams.transferMode = SPI_MODE_BLOCKING;
spiParams.transferCallbackFxn = NULL;//spiFxn
spiParams.bitRate = 1000000;
spiParams.frameFormat = SPI_POL0_PHA0;
spiParams.mode = SPI_MASTER;
I have already probe it in a custom board with 5x5 CC2650 and CC2650 LaunchPad previously.
Any idea for resolve the problem?
Thanks in advance,
Jose.