Search found 11 matches

by Weigen Qiu
Fri Jun 24, 2022 12:51 am
Forum: General Discussion
Topic: Question: Will the newly announced ESP32-C5 chip support FTM?
Replies: 0
Views: 1151

Question: Will the newly announced ESP32-C5 chip support FTM?

The announcement did not mention it,
Does anyone know?
by Weigen Qiu
Tue Nov 09, 2021 4:52 am
Forum: ESP-IDF
Topic: FTM ASAP mode
Replies: 0
Views: 1080

FTM ASAP mode

As far as I know, ESP32C3 and S2,S3 now support google's FTM ASAP mode (and I tested it with a pixel phone ).
my question is, is it possible to initiate a FTM ASAP request from within a ESP chip? and how to initiate that request from the ESP chip?

Thanks
by Weigen Qiu
Mon Nov 08, 2021 3:02 pm
Forum: ESP-IDF
Topic: FTM responder long term stability
Replies: 4
Views: 4350

Re: FTM responder long term stability

Does anyone have the same issue? and how should I resolve this issue? Hi @Weigen Qiu, I suggest opening an issue on ESP-IDF GitHub and linking to https://github.com/espressif/esp-idf/issues/7702 that looks like a similar issue but for ESP32-S2. Thanks ESP_krzychb, for pointing to the related issue....
by Weigen Qiu
Mon Nov 08, 2021 5:52 am
Forum: ESP-IDF
Topic: FTM responder long term stability
Replies: 4
Views: 4350

Re: FTM responder long term stability

I don;t see anything obvious wrong in your code, but if you suspect a memory leak, a way to confirm it is to periodically print the return value of xPortGetFreeHeapSize()... if that consistently goes down, you may indeed have a leak on your hands. I am not concerned with a memory leak on the initia...
by Weigen Qiu
Mon Nov 08, 2021 12:33 am
Forum: ESP-IDF
Topic: FTM responder long term stability
Replies: 4
Views: 4350

FTM responder long term stability

Hello, I have spent some time testing the FTM functionality of the ESP32C3 chip. I created a FTM responder with the code in official ftm example, and created the ftm initiator with the attached code. in the first few minutes, the ftm reports were successfully received, but eventually, the ftm respon...
by Weigen Qiu
Wed Aug 12, 2020 4:28 pm
Forum: Sample Code
Topic: is ESP-Mesh + softAP possible
Replies: 7
Views: 22195

Re: is ESP-Mesh + softAP possible

any progress on this?
by Weigen Qiu
Wed Jul 29, 2020 8:10 pm
Forum: General Discussion
Topic: ESP32-S2: 802.11mc FTM support?
Replies: 8
Views: 11464

Re: ESP32-S2: 802.11mc FTM support?

I also would like to know the progress of this implementation.
by Weigen Qiu
Thu Jul 16, 2020 5:16 am
Forum: Sample Code
Topic: is ESP-Mesh + softAP possible
Replies: 7
Views: 22195

Re: is ESP-Mesh + softAP possible

I really appreciate that. thank you.
by Weigen Qiu
Wed Jul 15, 2020 5:03 pm
Forum: Sample Code
Topic: is ESP-Mesh + softAP possible
Replies: 7
Views: 22195

is ESP-Mesh + softAP possible

Hi There, Is it possible to modify the ip_internal_network sample code, such that not only all ESp32-S2 devices can communicate with each other, but also external devices (such as cellphones) can see ESP32-S2 as softAP (just like Google Mesh)? i.e. use mesh network to turn ESP32-S2 as wifi extender/...
by Weigen Qiu
Wed Jul 15, 2020 4:49 pm
Forum: Sample Code
Topic: How do I configure promiscuous mode so that I receive packets from all channels
Replies: 3
Views: 5788

Re: How to I configure promiscuous mode so that I receive packets from all channels

thanks ESP_Sprite.

So I was playing with the Raspberry Pi, and the Wifi driver has a monitor mode. Once I witch to the monitor mode, I can receive packets from all channels. I was wondering the difference between monitor mode and the promiscuous mode.