Hi,
I got the nRF5340-DK + 7002-EK running your WiFi Fundamentals HTTP server last weekend. I connected the 5340+7002 to my wifi network and got an IP address. I also opened up a port on my wifi router so that the system could be contacted from the outside world. That all worked great.
I later added some BLE Mesh code to the application, and thus started my journey down the road of some new areas for me...
1. Working with dual cores. Specifically, making sure that BLE was set up to allow extended advertising for Mesh on the net core. I got that working after looking at support issues and samples. (All of my earlier work with your products has been with the 52840-DK.)
2. Wifi & BLE Mesh co-existence, which I never got working :-(
I did look at the Wifi + BLE Co-existence sample (docs.nordicsemi.com/.../README.html) and gleaned some good things from it.
At a high level, here is what would happen when I ran the WiFi Fundamentals HTTP server (with added BLE Mesh code):
1. Wifi shell came up fine.
2. I'd connect wifi to my router. Still fine.
3. Bluetooth and Mesh code executed next and I could provision a Mesh node from nRF Mesh on my phone. But once Bluetooth was running, the http server stopped responding and eventually the http connection to the router would drop.
This was true even if I commented out most of the Bluetooth code and only left the initial bt_enable function call to initialize Bluetooth. Once Bluetooth was in the picture, wifi and http went away immediately or soon.
4. I found a handful of support issues that helped, plus the wifi + BLE co-existence sample, plus advice from 4 AI's (ChatGPT, Gemini, Grok, and Claude). All of this pointed to radio conflicts, resource conflicts (like memory or threads), or both.
5. I think I got the radio co-existence issues worked out after looking over your co-existence sample. Maybe. I also maybe solved at least some other resource issues, but I ran out of time on this and had to just give up.
I'm wondering if you have a sample somewhere that utilizes an nRF5340-DK + 7002-EK shield to run wifi + BLE (maybe Mesh) at the same time. I think a sample of Mesh Client(s) sending data to the world via wifi (using http or mqtt) would be really useful (unless there is some other architecture that most customers use to get data from Mesh sensors out to the world).
Thanks!