Search found 6 matches
- Fri Feb 09, 2018 5:23 pm
- Forum: General Discussion
- Topic: Is there an UART auto baud rate example?
- Replies: 2
- Views: 6854
Re: Is there an UART auto baud rate example?
This is not how i interpreted this passage. I thought it was more like a "if you have auto baudrate detection and want to know where you're at, you have to calculatue it yourself". But it would work without that. Anyways, i looked into directly writing to registers to do this, and it doesn't seem to...
- Fri Feb 02, 2018 9:48 am
- Forum: General Discussion
- Topic: Is there an UART auto baud rate example?
- Replies: 2
- Views: 6854
Is there an UART auto baud rate example?
Hello there! I stumbled across chapter 13.3.4 "Baud Rate Detection" in the ESP32's technical reference and tried to implement this feature in one of my projects. Although i did find a correspondig constant UART_AUTOBAUD_EN, i do not understand how to enable the detection. I also could not find any e...
- Fri Aug 25, 2017 12:20 pm
- Forum: ESP-IDF
- Topic: Eclipse (Windows) does not find headers in components
- Replies: 9
- Views: 20125
Re: Eclipse (Windows) does not find headers in components
After following @kolban's instructions and adapting the include path XML file for windows / current eclipse version everything works! :D I used my original eclipse project that i set up using espressifs documentation. Then i included the include paths as described by@kolban. This didn't work out of ...
- Thu Aug 24, 2017 1:01 pm
- Forum: ESP-IDF
- Topic: Eclipse (Windows) does not find headers in components
- Replies: 9
- Views: 20125
Re: Eclipse (Windows) does not find headers in components
Sorry, it seems i messed up linking to the images.
Here they are again, hopefully correct this time.
The first from the main.c file: The second one is from the same project of the file "components/configstore/configstore.h":
Here they are again, hopefully correct this time.
The first from the main.c file: The second one is from the same project of the file "components/configstore/configstore.h":
- Thu Aug 24, 2017 8:46 am
- Forum: ESP-IDF
- Topic: Eclipse (Windows) does not find headers in components
- Replies: 9
- Views: 20125
Re: Eclipse (Windows) does not find headers in components
Thanks a lot for your suggestions, but sadly this didn't solve my problem. I double checked the projects configuration again, and it is configured exactly as described in the documentation (http://esp-idf.readthedocs.io/en/latest/get-started/eclipse-setup-windows.html#eclipse-windows-setup). Also in...
- Tue Aug 22, 2017 9:13 am
- Forum: ESP-IDF
- Topic: Eclipse (Windows) does not find headers in components
- Replies: 9
- Views: 20125
Eclipse (Windows) does not find headers in components
After setting up the project in eclipse following the instructions for windows machines and makeing it one time to let eclipse collect the header files paths everything works fine for the main.c file. Then i added a component and included the "esp_log.h" in the components .cpp (yes, the component is...