Hi
In converting the GEL file, there is the link error of Get_Timeout()/Set_Timeout() function.
How should I handle this?
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.
YC,
I believe this is just implementing a delay to wait for a write to take effect. You could potentially do this in C with a for loop that spins for a defined number of cycles. Be careful if you implement this in C using optimization. you need to take precautions against the optimizer eliminating empty for loops. Be sure to declare your loop counter as volatile.
regards,
Dan