Search found 1696 matches

by rudi ;-)
Thu Jan 19, 2017 11:41 pm
Forum: Documentation
Topic: Documentation Requests/Feedback
Replies: 81
Views: 205474

Re: Document Requests

Request: Schematics of lyra audio board [no hurry] yeap 1+ At the press conference, Espressif Systems showcased the ESP32-Lyra series of audio solution. ESP32-Lyra is a smart audio platform with top value for money, which is specifically designed for IoT application. With its ESP32 dual-core proces...
by rudi ;-)
Thu Jan 19, 2017 7:19 pm
Forum: Hardware
Topic: Want to make one of the GPIO of esp32 high on receving command
Replies: 2
Views: 5907

Re: Want to make one of the GPIO of esp32 high on receving command

hello, i want make one of the gpio of esp32 high when user give command through mobile app. first of all i am using examaple 14_gatt_server code to connect with my mobile then i am giving any command through BLE Scan app it will receive on the board in the hex format. Now i want to make high any on...
by rudi ;-)
Thu Jan 19, 2017 5:21 pm
Forum: General Discussion
Topic: Low Rate WIFI Protocol LR
Replies: 16
Views: 26825

Re: Low Rate WIFI Protocol LR

@Rudi: my long range test didn't go well because of a mechanical problem on the test vehicle (motor support plate fell apart). Will try again when I figure out how to 3d print a new one... @ivan txs, - (would help you on 3d print, but have not started this theme - but next time i do this too ) best...
by rudi ;-)
Thu Jan 19, 2017 5:15 pm
Forum: ESP-IDF
Topic: Command line sample code to accept custom command as input
Replies: 3
Views: 7636

Re: Command line sample code to accept custom command as input

Hi, Please let me know if anyone has implemented such kind of command line code which will ask for input and will perform operation for WiFi or UART or other interface test-cases based on input. As I have checked with scanf function but some how its not working as not able to stop execution process...
by rudi ;-)
Thu Jan 19, 2017 9:39 am
Forum: General Discussion
Topic: Low Rate WIFI Protocol LR
Replies: 16
Views: 26825

Re: Low Rate WIFI Protocol LR

hi

.. this Wifi Protocol LR was just mentioned here?

best wishes
rudi ;-)
by rudi ;-)
Wed Jan 18, 2017 8:08 pm
Forum: General Discussion
Topic: Low Rate WIFI Protocol LR
Replies: 16
Views: 26825

Low Rate WIFI Protocol LR

.. uint32_t low_rate_enable:1; /**< bit: 0 flag to identify if low rate is enabled or not */ .. #define WIFI_PROTOCOL_11B 1 #define WIFI_PROTOCOL_11G 2 #define WIFI_PROTOCOL_11N 4 #define WIFI_PROTOCOL_LR 8 hi guys, get we low rate for long range ? some results from 1/4 Mbps testings? best wishes r...
by rudi ;-)
Wed Jan 18, 2017 11:59 am
Forum: ESP-IDF
Topic: include sdk file issue
Replies: 7
Views: 15448

Re: include sdk file issue

As a workaround/solution ... when we activate Bluetooth in "make menuconfig", that sets the macro variable "CONFIG_BT_ENABLED". If we wish to conditionally compile code only when bluetooth is enabled we can use code similar to the following: #include "sdkconfig.h" #if defined(CONFIG_BT_ENABLED) #in...
by rudi ;-)
Wed Jan 18, 2017 11:25 am
Forum: General Discussion
Topic: proposal: forwarder service for links
Replies: 1
Views: 3835

proposal: forwarder service for links

hi since in every esp-idf update files and links renames, changed and new sorted are absolutely necessary and on the base posted links in past then get '404' perhabs it would be a good overthink to use a forwarder service? do you have any plan or idea how we can manage this? example: if we post link...
by rudi ;-)
Tue Jan 17, 2017 1:21 pm
Forum: General Discussion
Topic: [answered] feed task watchdog
Replies: 8
Views: 14287

Re: [Q] feed task watchdog

WiFive wrote:
jumjum123 wrote:Any explanation about usage of this function ?
https://github.com/espressif/esp-idf/bl ... i/wdts.rst
https://github.com/espressif/esp-idf/bl ... m/wdts.rst
by rudi ;-)
Tue Jan 17, 2017 1:19 pm
Forum: General Discussion
Topic: [answered] feed task watchdog
Replies: 8
Views: 14287

Re: [Q] feed task watchdog

..by not doing something like a vTaskDelay, wait for a queue or socket, ... that lets it be descheduled. .. Fix that and the watchdog will stop bothering you. Hi Jeroen, yes you are right, it was a stress test on wait in websvr socket - for a connect from a client for testing: menuconfig->Component...