Search found 1683 matches

by kolban
Mon Mar 12, 2018 3:30 am
Forum: General Discussion
Topic: Any way to change the default timeout period for opening a BLE connection?
Replies: 3
Views: 5412

Re: Any way to change the default timeout period for opening a BLE connection?

It might be that this link might be of some value to you. It talks about a function called esp_ble_gap_set_prefer_conn_params() that appears to allow one to set configuration parameter prior to requesting a connection.
by kolban
Mon Mar 12, 2018 3:20 am
Forum: Sample Code
Topic: REQ: simple Samplecode to simultanously use multiple GPIO-PINS
Replies: 2
Views: 7409

Re: REQ: simple Samplecode to simultanously use multiple GPIO-PINS

Howdy Rene' In the ESP32 technical reference manual found here: https://www.espressif.com/sites/default/files/documentation/esp32_technical_reference_manual_en.pdf In there you will find reference to a couple of of registers: * GPIO_OUT_W1TS_REG * GPIO_OUT_W1TC_REG These two 32bit registers set high...
by kolban
Mon Mar 12, 2018 3:13 am
Forum: ESP32 Arduino
Topic: Pointer to install and setup for Arduino on Win10
Replies: 1
Views: 3310

Re: Pointer to install and setup for Arduino on Win10

Howdy Brian,
Have you see this article and/or followed the steps?

https://github.com/espressif/arduino-es ... windows.md

If there are issues with the instructions or they can be improved, I'm pretty sure the community would love to hear about it.
by kolban
Mon Mar 12, 2018 12:45 am
Forum: General Discussion
Topic: Looking for ESP32 Developer
Replies: 9
Views: 10729

Re: Looking for ESP32 Developer

I find this forum very good for looking for colleagues / staff / friends to work on projects however I have found it most beneficial to all involved in the post looking for ESP32 developers includes: * Payment based or free * Nature of the work requested * Duration of the project * Outcome / goals o...
by kolban
Sun Mar 11, 2018 10:26 pm
Forum: General Discussion
Topic: Limit precision of double in json object or array
Replies: 6
Views: 7794

Re: Limit precision of double in json object or array

Interesting ... I am sensing correctly, the JSON you were transmitting may have shown up as: [ 2.000000000000000000000 ] as opposed to [ 2.0 ] as you might have hoped/expected? Semantically 2.0000000000000000 == 2.0 so it was in fact "working" but was perhaps redundant in its data usage. I think we ...
by kolban
Sun Mar 11, 2018 10:22 pm
Forum: General Discussion
Topic: Are there any tools to help debug watchdog timeouts
Replies: 18
Views: 17403

Re: Are there any tools to help debug watchdog timeouts

What exactly does the monitor output show? Have you enabled verbose output for the execution of the project?
by kolban
Sun Mar 11, 2018 10:21 pm
Forum: ESP-IDF
Topic: ESP-IDF include additional paths
Replies: 14
Views: 48330

Re: ESP-IDF include additional paths

In your story, it looks like the root of your project is C:\Work\Actisense\http_server2 beneath this will be your components. These are the source files that should be compiled and linked together to build your application. It further seems that you have source files in a distinct directory called C...
by kolban
Sun Mar 11, 2018 10:16 pm
Forum: General Discussion
Topic: Are there any tools to help debug watchdog timeouts
Replies: 18
Views: 17403

Re: Are there any tools to help debug watchdog timeouts

The way I understand a watchdog timeout is that we want to detect tasks that aren't responding. To do this, we set a timer per task and ask "Since the last time the timer fired, has this task proved it is alive?". If you are getting a watchdog exception, then I am guessing it is because "some task" ...
by kolban
Sun Mar 11, 2018 5:31 pm
Forum: ESP-IDF
Topic: ESP-IDF include additional paths
Replies: 14
Views: 48330

Re: ESP-IDF include additional paths

We might need some more information from you to assist. Include directories are where the compiler looks for header files (.h files) that contain declarations of data and functions. These are used during compilation. At the conclusion of compilation you have object files and libraries. These then ar...
by kolban
Sun Mar 11, 2018 5:27 pm
Forum: ESP32 Arduino
Topic: How can i implement a framework like boostrap in my ESP32 with a http server?...
Replies: 2
Views: 4357

Re: How can i implement a framework like boostrap in my ESP32 with a http server?...

If I am understanding you correctly, you have an ESP32 that is network connected to your access point and on the ESP32 you are running an HTTP server that responds to browsers using the HTTP protocol and returns HTML that is then rendered on the browser. Your question is "Can I serve up arbitrary we...