Other Parts Discussed in Thread: IWRL1432
Tool/software:
Hi,
I'm currently working with the IWRL1432 board and have flashed the level sensing .appimage
located at:
radar_toolbox_2_30_00_12\source\ti\examples\Industrial_and_Personal_Electronics\Level_Sensing\high_accuracy_low_power_sensors\prebuilt_binaries
I have a couple of questions:
-
Does the High Accuracy Visualizer GUI support my board?
-
I want to send the sensor value (fluid distance from the sensor) to another MCU (STM32) using SPI (i refer MCSPI code also). To achieve this, I've imported the source code into Code Composer Studio (CCS), enabled the MCSPI driver, and added the following code in void level_sensing(void* args); function
MCSPI_Transaction_init(&spiTransaction);
spiTransaction.channel = gConfigMcspi0ChCfg[0].chNum;
spiTransaction.dataSize = 8;
spiTransaction.csDisable = TRUE;
spiTransaction.count = 128; //APP_MCSPI_MSGSIZE / (spiTransaction.dataSize/8);
spiTransaction.txBuf = (void *)gMcspiTxBuffer;
spiTransaction.rxBuf = (void *)gMcspiRxBuffer;
spiTransaction.args = NULL;
Now, my question is: where should I call the SPI transfer
Regards
Rakesh Amara