Dear TI’s team,
I use IWR1642 and attempt to output vital sign values to an external file. The values are described in the 1812 – 1815 lines.
I made changes to the vitalSigns_16xx_dss with CCS, and succeeded in Rebuild Project according to the Driver Vital Signs – Developer7s Guide.
But the change was not correctly reflected.
I added following code to the appropriate part of vitalsigns_16xx_dss.
FILE *p;
p = fopen(“filename.txt”, “w”);
fprintf(p, “%f”, Output values);
fclose(p);
Please could you help me?
My questions are :
1 – Is it possible to output values to an external file?
2 – If yes, what should I do to solve it?
I also attach a screen shot of the CCS screen.
Thank you very much for your help.