I’ve created a program that execute vnav on climb, on my android device it work well, I’ve tried to run it on my IPad and after 5 minutes IF crash out.
Are there any call limitation on IOS or I’m doing something wrong?
P. S. The program run on my computer
What do you mean by “IF crash out” – IF crashes itself or your app loses connection to IF? How have you built the app – in JavaScript/node? Something else?
I’m assuming you are using the IF Connect v2 API. This has no explicit call limitations other than what your device performance (both devices) and network can support. If you try to send too many IF Connect API requests to IF in short succession that can cause issues sometimes but over many years building different apps with the API I have never seen that cause IF itself to crash – usually it is losing connection to IF that happens.
Yeah, I’m building it in python, the problem was that I open and close the connection every time I was making a call, now I’ve fixed it and it’s working, thank you so much
Glad to hear it. Definitely no need to open/close connections for each call. Just create the connection, keep it open, and send calls as needed.