Search found 3 matches
- Wed Jun 15, 2022 8:30 am
- Forum: ESP-IDF
- Topic: ip_internal_network with fixed root using ethernet
- Replies: 3
- Views: 1709
Re: ip_internal_network with fixed root using ethernet
I am now able to use the esp-idf version of choice: release/v4.4 (as of now v4.4.1-262-g5e6cffbb14). I am initializing the ethernet interface after the mesh network. in the "got ip event", I added: mesh_netifs_start(true); esp_mesh_post_toDS_state(true); s_current_ip.addr = event->ip_info.ip.addr; #...
- Fri Jun 10, 2022 12:36 pm
- Forum: ESP-IDF
- Topic: ip_internal_network with fixed root using ethernet
- Replies: 3
- Views: 1709
Re: ip_internal_network with fixed root using ethernet
It turns out that I was using v4.3.1 of esp-idf. moving to HEAD of master for esp-idf my code is actually working fine (after modifying some code to adopt to changes in esp-idf) After this I tried also recommended stable version (currently 4.4.1), not working. Then tested also release/v4.4 and relea...
- Thu Jun 09, 2022 8:21 pm
- Forum: ESP-IDF
- Topic: ip_internal_network with fixed root using ethernet
- Replies: 3
- Views: 1709
ip_internal_network with fixed root using ethernet
I am trying to modify the example ip_internal_network to use a fixed root and connect to network using ethernet interface instead of wifi sta. Can anyone suggest the needed modifications to allow for frames from nodes in the mesh network to be routed correctly to the outside network. When I run the ...