I am running MQX 5.0.2 and nio style mounts. I mount an SD card with:
a_fd = open("a:", O_ACCMODE); // O_RDWD works the same way
I run a cgi search from the web server with:
error_code = ioctl(a_fd,IO_IOCTL_FIND_FIRST_FILE,&search);
The search works. The link created on the web page and processed via Web alias to download works. Life is good.
As soon as I open a file in any normal task for the same a: drive, both web page cgi search and aliases stop working completely. Any ideas? Why can't web page cgi and alias coexist with normal tasks writing to an SD card? The normal tasks work just fine with the SD card.
Thank you!