Search found 13 matches

by ThinkalVB
Mon Jul 22, 2019 1:52 pm
Forum: General Discussion
Topic: MAC and IP from WiFi event handler
Replies: 2
Views: 4278

Re: MAC and IP from WiFi event handler

https://github.com/espressif/esp-idf/pull/3605 The documentation says Event ID (legacy event ID)---------------------------------------------------------Event data structure IP_EVENT_AP_STAIPASSIGNED (SYSTEM_EVENT_AP_STAIPASSIGNED)-------- n/a WiFi.onEvent(handleSTAip, WiFiEvent_t::SYSTEM_EVENT_AP_...
by ThinkalVB
Mon Jul 22, 2019 7:24 am
Forum: ESP-IDF
Topic: Problem in Access Point Mode
Replies: 5
Views: 8072

Re: Problem in Access Point Mode

Check if the password has at least 8 characters and try to avoid special symbols. Give some code so we can resolve it.
by ThinkalVB
Mon Jul 22, 2019 7:16 am
Forum: General Discussion
Topic: MAC and IP from WiFi event handler
Replies: 2
Views: 4278

MAC and IP from WiFi event handler

When a station connects to the softAP I think the IP address assigned to the station is very much important. However the event handler only gives us the MAC address and the aid that ESP32 soft-AP gives to the station. 1) So is there any way in which I can get the IP of the stations when they connect...
by ThinkalVB
Mon Jul 22, 2019 5:28 am
Forum: General Discussion
Topic: Packet forwarding (Broadcast)
Replies: 5
Views: 7310

Re: Packet forwarding (Broadcast)

I think it's great if you want to implement your own just wanted you to be aware of it.
Ya, it will be cool... Thank you for understanding.
by ThinkalVB
Mon Jul 22, 2019 4:31 am
Forum: General Discussion
Topic: Packet forwarding (Broadcast)
Replies: 5
Views: 7310

Re: Packet forwarding (Broadcast)

I did check out the painless mesh and ESP32 MDF, but what I need was the syntactic sugar for implementing the same in Arduino ESP32 ( not using the ESP-IDF if it's possible). Thanks for the replay ...peace .....
by ThinkalVB
Sun Jul 21, 2019 7:40 pm
Forum: General Discussion
Topic: Packet forwarding (Broadcast)
Replies: 5
Views: 7310

Packet forwarding (Broadcast)

I am trying to implement a UDP mesh formation library (flooding), kindly evaluate my assumptions and give suggestions 1) I have 2 event handler functions; I need to get the mac of all STA connected to the AP and the mac of the AP the esp's STA is connected to. Then use this MAC mac to send packets t...
by ThinkalVB
Sun Jul 21, 2019 6:39 pm
Forum: General Discussion
Topic: Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.
Replies: 1
Views: 8337

Re: Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.

Hi guys, I have managed to fix it; It was due to bad local IP and gateway address given to the WiFi.WiFi.softAPConfig() function as argument.
by ThinkalVB
Sun Jul 21, 2019 7:53 am
Forum: General Discussion
Topic: Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.
Replies: 1
Views: 8337

Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.

I have commented everyline of the code and still it doesn't work now. When I compiled the same yesterday it worked fine. I have no idea what is wrong with it. I am frustrated please help me .... I am trying to make a mesh formation library for ESP32 https://github.com/ThinkalVB/AirMesh (I uploaded t...
by ThinkalVB
Sat May 11, 2019 6:07 pm
Forum: General Discussion
Topic: Routing/bridging
Replies: 9
Views: 25295

Re: Routing/bridging

Thank you @JayLogue I am trying to make a custom mesh network using ESP32 ( with custom routing technique specified in my final year thesis ). Not the MDF Ok Can I make the same using Audrino core library if yes how? [ Using RAW sockets to receive UDP and TCP packets and resend them to other nodes a...
by ThinkalVB
Sat May 11, 2019 2:13 pm
Forum: General Discussion
Topic: Routing/bridging
Replies: 9
Views: 25295

Re: Routing/bridging

I am also searching for the same, ESP32 MDF has a similar feature and I guess it's possible to route a packet between AP and STA. I have never tried it before but I believe RAW sockets can get the thing done. How ? is the question that requires to be answered - IF you find anything regarding this pl...