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.

MMWCAS-DSP-EVM: 传感器论坛

Part Number: MMWCAS-DSP-EVM

When running the Cascade_Capture.lua script to capture data, I just want to output the captured data file to the SSD default file written inside the LUA script, and I don't want to transfer it to the PC at the same time, because the process of transferring the data consumes a lot of time when I do multiple captures, how can I do it?

  • 你好,

    LUA里如下内容,注释掉是否就解决了你的问题?

    -- Enable the below if required
    WriteToLog("Starting Transfer files using WinSCP..\n", "blue")
    status = ar1.TransferFilesUsingWinSCP_mult(1)
    if(status == 0) then
    WriteToLog("Transferred files! COMPLETE!\n", "green")
    else
    WriteToLog("Transferring files FAILED!\n", "red")
    return -5
    end

    Thanks,

    Chris