I have an application where I need to communicate in UDP over Wifi while in parallel I need to communicate in BLE. Is this possible with the Board ? As my testing reveal that the BLE is working on its own, and the wifi also, but if I use both (WiFiNINA.h and ArduinoBLE.h) only the first one I am initialising will work.
I've read here the following "The MKR WiFi 1010 is a dual processor device that invites for experimentation. Hacking the WiFiNINA module allows you to, for example, make use of both WiFi and BLE / Bluetooth® at once on the board"
A dual processor design would not help a lot with this use case. What you would need is a software stack that handles both at the same time because you have one radio and both protocols work in the same ISM band. To ensure BLE is working while WiFi is active, the stack needs to make sure the BLE is time sliced in between the WiFi packets. Even if you had two radios you would need to do that because the WiFi signal would otherwise disturb the BLE transfers. Only the BLE advertisement channels are positioned in between the WiFi channels. This allows BLE devices to find each other and then jump around the other channels (channel hopping) to avoid active WiFi transmissions.
If your application would be happy with switching between the protocols, you can still use your Arduino. The switch will take some time, so you cannot switch back and forth within a second.
I had a similar discussion last year with the Arduino Nano 33 IoT (a smaller variant of your board). I posted an example in reply#7.
If there are any issues with this example, please let me know. Sometimes the Arduino libraries change something that requires some minor modifications.