What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
Does WIFI_PROTOCOL_LR capture more data than WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N?
-
- Posts: 364
- Joined: Mon Jan 04, 2021 2:06 pm
Re: What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
Hi,
Can you make your question a little bit more specific?
For the Wi-Fi LR, please see: https://docs.espressif.com/projects/esp ... g-range-lr
Can you make your question a little bit more specific?
For the Wi-Fi LR, please see: https://docs.espressif.com/projects/esp ... g-range-lr
Re: What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
My application scenario is that esp32 works in promiscuous mode. I hope to catch as many packets as possible.Which is the better choice, B|G|N or LR or B|G|N|LR?
Code: Select all
esp_wifi_set_mode(WIFI_MODE_STA);
const uint8_t protocol = WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N;
// const uint8_t protocol = WIFI_PROTOCOL_LR; // long range mode
// const uint8_t protocol = WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N| WIFI_PROTOCOL_LR;
esp_wifi_set_protocol(WIFI_IF_STA, protocol);
Last edited by huang.yan on Wed Aug 18, 2021 4:09 am, edited 1 time in total.
Re: What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
My application scenario is that esp32 works in promiscuous mode. I hope to catch as many packets as possible.Which is the better choice, B|G|N or LR or B|G|N|LR?
Code: Select all
esp_wifi_set_mode(WIFI_MODE_STA);
const uint8_t protocol = WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N;
// const uint8_t protocol = WIFI_PROTOCOL_LR; // long range mode
// const uint8_t protocol = WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N| WIFI_PROTOCOL_LR;
esp_wifi_set_protocol(WIFI_IF_STA, protocol);
ESP_Minatel wrote: ↑Tue Aug 17, 2021 4:42 pmHi,
Can you make your question a little bit more specific?
For the Wi-Fi LR, please see: https://docs.espressif.com/projects/esp ... g-range-lr
Screenshot from 2021-08-17 17-41-18.png
-
- Posts: 364
- Joined: Mon Jan 04, 2021 2:06 pm
Re: What's the diffrence between WIFI_PROTOCOL_LR and WIFI_PROTOCOL_11N?
Hi,
I don't think you can use the Long Range for this application, since the LR mode is a proprietary mode any may not affect the reception sensitivity (for sniffer purpose).
In your application, the antenna is the only thing you should try to change in order to increase sensitivity. Antenna diversity is another option, but a little more complex to implement it.
I don't think you can use the Long Range for this application, since the LR mode is a proprietary mode any may not affect the reception sensitivity (for sniffer purpose).
In your application, the antenna is the only thing you should try to change in order to increase sensitivity. Antenna diversity is another option, but a little more complex to implement it.
Who is online
Users browsing this forum: No registered users and 92 guests