Search found 45 matches

by Aussie Susan
Fri Oct 18, 2019 2:08 am
Forum: ESP-IDF
Topic: How to turn on/off the BLE and WiFI radios
Replies: 3
Views: 7203

Re: How to turn on/off the BLE and WiFI radios

Sorry for the delay in replying - the cause of that delay is also the reason I have not tried this and possibly wont for a little while yet.
Just wanted to say thanks for the information and I'll use it as soon as I can.
Susan
by Aussie Susan
Tue Oct 08, 2019 1:47 am
Forum: ESP-IDF
Topic: How to turn on/off the BLE and WiFI radios
Replies: 3
Views: 7203

How to turn on/off the BLE and WiFI radios

I want to use both BLE and WiFi. Ideally I'd like to use both simultaneously but others have reported issues with this. In my circumstance I have no problem with switching between BLE and WiFi. In the various topics I've read about this there is often the comment to turn the radio on and off for the...
by Aussie Susan
Mon Oct 07, 2019 2:48 am
Forum: General Discussion
Topic: Correct way to pass struct as an xTaskCreate parameter?
Replies: 5
Views: 23818

Re: Correct way to pass struct as an xTaskCreate parameter?

The problem the OP had was that the structure that was passed in was created on the stack. When the function used to start the 'other' task exited then the structure was destroyed. However the started task still had the pointer to where the structure used to be on the stack. In the mean time anythin...
by Aussie Susan
Thu Sep 26, 2019 3:21 am
Forum: ESP-IDF
Topic: IDE for ESP-IDF
Replies: 5
Views: 8952

Re: IDE for ESP-IDF

PlatformIO
Susan
by Aussie Susan
Thu Aug 22, 2019 4:12 am
Forum: ESP IoT Solution
Topic: Communication with 2 ESP32 over BLE
Replies: 1
Views: 5594

Re: Communication with 2 ESP32 over BLE

It might pay to start using the standard terms. I think the device that takes the sensor readings would be the 'server' and the other device would be called the 'client'. Also the type of communication and acknowledgement you describe is called an 'Indicate' (which is like a notify but with an ackno...