We are currently using PDSK 7.1 with QNX OS, we have a requirement where we need to notify the application when there is a timeout in capture node. We wanted to know how to handle the exception in capture node when there is a time out.
We have referred the following file,
PSDK7.1/tiovx/kernels_j7/hwa/capture/vx_capture_target.c
status |= tivxCaptureTimeout(prms);
if (status != VX_SUCCESS)
{
if(1U == prms->enableErrorFrameTimeout)
{
//Handle exception
}
}
Can you please suggest a way of handling the exception when there is a timeout. Thanks in advance.