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.

TDA4VH-Q1: TDA4VH RTOS SDK 09.00.01.01, is not a compressed gzip, and a issue in conformance test

Part Number: TDA4VH-Q1

I'm trying to port TIOVX to a different OS. Now I get two issues.

1. https://dr-download.ti.com/software-development/software-development-kit-sdk/MD-zv2DZbDzFz/09.00.01.01/ti-processor-sdk-rtos-j784s4-evm-09_00_01_01.tar.gz, is not a compressed gzip tarball. The total size is 6GB. 

$ file ti-processor-sdk-rtos-j784s4-evm-09_00_01_01.tar.gz
ti-processor-sdk-rtos-j784s4-evm-09_00_01_01.tar.gz: POSIX tar archive (GNU)

Does TI will fix this link?

2.

In conformance test case, negativeTestGraphParamBoundary and negativeTestControlCommandsBoundary, the variable "vx_node nodes[TIVX_GRAPH_MAX_PARAMS+1]" is not initialled. And then send command on nodes[TIVX_GRAPH_MAX_PARAMS] to get a expect error. This will get a segment fault.

Anyone can help? 

Thanks.

  • Concerning the conformance test case issues, it seems that the variable "vx_node nodes[TIVX_GRAPH_MAX_PARAMS+1]" is not being initialized, leading to a segmentation fault when a command is sent to nodes[TIVX_GRAPH_MAX_PARAMS]. To address this issue, you may want to consider initializing the "vx_node" array properly before attempting to access its elements. Additionally, you might need to review the test case logic to ensure that it handles boundary conditions appropriately.