Greetings.
I'm using MATLAB to control mmwave studio with the example code given in the mmwave studio user guide. It gives a return of '30000' irrespective of the command succeeding or failing. In this snippet,
%Example Lua Command
strFilename = 'C:\\ti\\mmwave_studio_03_00_00_14\\mmWaveStudio\\Scripts\\Cascade\\Cascade_Configuration_MIMO.lua';
Lua_String = sprintf('dofile("%s")',strFilename);
ErrStatus =RtttNetClientAPI.RtttNetClient.SendCommand(Lua_String);
ErrStatus would always contain 30000 regardless of the Lua script executing successfully in mmWave studio or not. Using this logic in an automated system won't work as the system won't know if the LUA script failed or not.
Is there an API that can tell Matlab if the script execution in mmwave studio failed or not?