Open
Description
Checklist
- Checked the issue tracker for similar issues to ensure this is not a duplicate.
- Provided a clear description of your suggestion.
- Included any relevant context or examples.
Issue or Suggestion Description
Hi! I'm wondering how to set up promiscuous mode. These RpcIDs are present in esp_hosted_rpc.proto
:
// Req_WifiSetPromiscuousRxCb = 305; //0x131
Req_WifiSetPromiscuous = 305; //0x131
Req_WifiGetPromiscuous = 306; //0x132
Req_WifiSetPromiscuousFilter = 307; //0x133
Req_WifiGetPromiscuousFilter = 308; //0x134
Req_WifiSetPromiscuousCtrlFilter = 309; //0x135
Req_WifiGetPromiscuousCtrlFilter = 310; //0x136
However, they are absent from the Payload section of Rpc:
Rpc_Req_WifiSetCountry req_wifi_set_country = 303;
Rpc_Req_WifiGetCountry req_wifi_get_country = 304;
Rpc_Req_WifiApGetStaList req_wifi_ap_get_sta_list = 311;
Rpc_Req_WifiApGetStaAid req_wifi_ap_get_sta_aid = 312;
And therefor also have no payload messages. How should you set up promiscuous mode? Thank you!
edit: I should clarify: This is for esp-hosted-mcu
. Please let me know if I should re-posted the issue there.