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.

USB2ANY: C# and USB2ANY *.dll

Part Number: USB2ANY

Hello,

I am trying to create my own application to communicate with the BQ97600EVM-030.

As a basis I am using the C# Example from the USB2ANY SDK.

To wake up the BQ97600 I have to send a "Wake Tone".

E.g.:

 u2a.GPIO_WritePort(6, 1);              /* Set GPIO 6 to low level - CS */
 u2a.GPIO_WritePulse(4, 0, 2750);  /* Output low level pulse on MISO line for 2,75ms */
 u2a.GPIO_WritePort(6, 2);             /* Set GPIO 6 to high level - CS */

Unfortunatley the execution time of the function calls are very slow.

Time between setting CS low and sending the low pulse on the MISO line is ~50ms.

Time after the pulse until CS high is again ~50ms.

Is there a way to improve the performance?

Thanks,

André Meyer