You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is one request that I am struggling to find much material on and it is a bit of a niche case.
I have ESP32 that connects to IoT Central via WiFi using Azure SDK for C. All that is working fine. However, I have a circumstance where there is so much RF interference that the only reliable connection is Ethernet. I have connected W5500 via SPI and have that working (DHCP,…test site request [explicitly coded commands] etc.). However, if I try to use that interface for any other comm (like with wifi…simply connect and go)…nothing goes through.
So what I am after is:
Has anyone done such scenario where ALL traffic is redirected to Ethernet and how to go about it?
If not, what would be the best way to go about it/ideas/approaches/considerations?
Can you point me to implementations/code/what do do here or how to code this?
For reference…ESP32 Wrover-IE, PlatformIO and Arduino.
Many thanks for your time/help/suggestions/consideration!!
The text was updated successfully, but these errors were encountered:
Is this the correct repository then? The Azure SDK for Embedded C is at https://github.com/Azure/azure-sdk-for-c
We don't recommend using the code within this repo for ESP32 or other constrained devices.
Has anyone done such scenario where ALL traffic is redirected to Ethernet and how to go about it?
We ethernet samples but, unfortunately, not with ESP.
In both cases, the NXP RT1060 or Renesas CK-RX64N use Ethernet using the NXSecure layer and drivers.
Similarly, for ESP you would need to use ESP32-IDF in conjunction with W5500 (looks like there is an example here).
It would be important to ensure the integration works with higher layer network stack components such as ESP-TLS and ESP-MQTT. If all that works as expected, you could start from one of our Arduino samples: https://github.com/Azure/azure-sdk-for-c-arduino
This is one request that I am struggling to find much material on and it is a bit of a niche case.
I have ESP32 that connects to IoT Central via WiFi using Azure SDK for C. All that is working fine. However, I have a circumstance where there is so much RF interference that the only reliable connection is Ethernet. I have connected W5500 via SPI and have that working (DHCP,…test site request [explicitly coded commands] etc.). However, if I try to use that interface for any other comm (like with wifi…simply connect and go)…nothing goes through.
So what I am after is:
Has anyone done such scenario where ALL traffic is redirected to Ethernet and how to go about it?
If not, what would be the best way to go about it/ideas/approaches/considerations?
Can you point me to implementations/code/what do do here or how to code this?
For reference…ESP32 Wrover-IE, PlatformIO and Arduino.
Many thanks for your time/help/suggestions/consideration!!
The text was updated successfully, but these errors were encountered: