This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWR1443BOOST: MATLAB GUI Doubt

Part Number: AWR1443BOOST
Other Parts Discussed in Thread: AWR1443, AWR1642

I am using AWR1443 BOOST ES 2.0 fro vital signs project and can successfully implement it but-

1. The GUI is slow i.e, showing the results with a lag, can there be any methods to decrease this lag?

2. I want to find out the output datapoints generated by the radar which is input to the GUI and save the data points. how to do so?

  • Hi

    Answer 1

    Yes, the matlab GUI is slow. The only solution would be create a new GUI in QT. We did one for the AWR1642 version of the vital signs demo.

    This GUI is available in

    \labs\incabinsensing\driver_vital_signs\vitalSigns_host\gui\gui_source

    Answer 2

    You would need to modify the GUi in order to save the data that is received from board.

    I looked at the GUI and it seems that there is already  some feature to save data to a file:

       if (app.SaveData.Value)
        fwrite(fid_write_bin, bytevec_data,'uint8');      
       end 

    Thank you

    Cesar

  • I looked at the GUI and it seems that there is already  some feature to save data to a file:

       if (app.SaveData.Value)
        fwrite(fid_write_bin, bytevec_data,'uint8');      
       end 

    I tried clicking on the option which is save data idk it is not working.

  • Hi,

    It is possible that this feature was only used during development and not supported later.

    Please modify the gui matlab code to save the bytevec data to a file

    thank you
    Cesar