ESP8266 Developer Zone The Official ESP8266 Forum 2019-10-01T20:33:22+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=51475 2019-10-01T20:33:22+08:00 2019-10-01T20:33:22+08:00 https://bbs.espressif.com:443/viewtopic.php?t=51475&p=66273#p66273 <![CDATA[Re: How to setup sent callback for promiscuous mode]]>
wifi_set_promiscuous_rx_cb(callbackListen);
wifi_promiscuous_enable(1);

... when obviously, I should have seen:

int wifi_register_send_pkt_freedom_cb(freedom_outside_cb_t cb);

Statistics: Posted by Inquisitor — Tue Oct 01, 2019 8:33 pm


]]>
2019-10-01T20:07:00+08:00 2019-10-01T20:07:00+08:00 https://bbs.espressif.com:443/viewtopic.php?t=51475&p=66272#p66272 <![CDATA[How to setup sent callback for promiscuous mode]]> wifi_send_pkt_freedom method it states,

Only after the previous packet was sent, and the sent callback is entered, the next packet is allowed to send. Otherwise, wifi_send_pkt_freedom will return “fail”.

How does one setup the sent callback? - I have set up espconn_regist_sentcb() before for TCP, but there does not seem to be such a method dedicated to promiscuous mode and the required espconn_regist_sentcb method requires an espconn structure that can only be configured with a TCP or UDP object. Since promiscuous mode is neither, what do I do? All examples that I have found on the Internet just brute force the wifi_send_pkt_freedom and let it fail... sometime trying multiple times immediately after each other expecting a different answer. I would rather check it being ready and only then create the message to be sent.

Thanks for your help.

Statistics: Posted by Inquisitor — Tue Oct 01, 2019 8:07 pm


]]>