Hi,
I am coming across an issue with app_scheduler and FDS.
While waiting for an event in FDS to complete (write, read, init, gc, etc) I go into a while loop calling app_sched_execute() until the event handler is invoked and I can continue. However, I am running into an issue where I am calling an fds Write from a scheduler event. The repeated call to app_sched_execute() means the same command is executed over and over again until the FDS runs out of Queue Space and I hit the Error Handler.
Is there a way to safely wait for the FDS to complete a task without causing this recursion?
Thanks