Other Parts Discussed in Thread: CC1312R
hi ,
I'm trying to use the SPI1 interface of RPI-4 (not SPI0) to the cc1352p-4 where as the cc serves as slave and the rpi-4 as master.
sadly the SPI1 of rpi-4 does not support SPI_POL0_PHA1 (unlike SPI0 which does and workd well with the cc),
so I tried using or SPI_POL1_PHA0 with the CC and changed the sdk 6.30 example 'spislave_CC1352P_4_LAUNCHXL_tirtos7_ticlang' accordingly , but still the bytes that were sent didn't received well on the cc.
meaning I tried to change the frameFormat field of the spi handle:
spiParams.frameFormat =SPI_POL1_PHA0;// SPI_POL0_PHA1;
does this CC even support SPI_POL0_PHA0 or SPI_POL1_PHA0 ?
if not, does CC1312R support it?