Search found 50 matches

by papaluna
Tue May 14, 2019 3:24 pm
Forum: General Discussion
Topic: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"
Replies: 19
Views: 33864

Re: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"

Gunar, I'm using Windows 10 and I recently upgraded from Eclipse Oxygen to Eclipse IDE 2019-03. Unfortunately the ESP-IDF include files were no longer found in the existing Eclipse projects. I had to set "Allow heuristic resolution of includes" to `*ON` (which is the default in Eclipse IDE 2019-03)....
by papaluna
Fri May 03, 2019 11:09 am
Forum: ESP-IDF
Topic: BMP280 I2C temperature & pressure reading issue ***Solved***
Replies: 8
Views: 14284

Re: BMP280 I2C temperature & pressure reading issue

1. The vTaskDelay() is not suited for low values of millisec_delays. It is essential to use ets_delay_us() instead. Maybe that fixes it. /* \Brief : The delay routine * \param : delay in ms */ void BMP280_delay_millisec(u32 millisec) { ets_delay_us(millisec * 1000); } 2. A working ESP-IDF project fo...
by papaluna
Tue Apr 23, 2019 12:14 am
Forum: ESP-IDF
Topic: Stupid enum problem....
Replies: 3
Views: 5452

Re: Stupid enum problem....

I think the C syntax is

Code: Select all

enum [identifier] {enum-list};
by papaluna
Tue Apr 16, 2019 6:30 am
Forum: General Discussion
Topic: v3.2 make menuconfig for component NVS is empty.
Replies: 2
Views: 3574

Re: v3.2 make menuconfig for component NVS is empty.

Hi,
Thanks for the explanation.
by papaluna
Mon Apr 15, 2019 3:08 pm
Forum: General Discussion
Topic: v3.2 make menuconfig for component NVS is empty.
Replies: 2
Views: 3574

v3.2 make menuconfig for component NVS is empty.

Hi,
For: ESP-IDF stable release v3.2

FYI I just noticed that the "make menuconfig" for the item "Component Config -> NVS" shows an empty screen although Kconfig exists for the nvs_flash component.
by papaluna
Mon Apr 15, 2019 2:58 pm
Forum: ESP-IDF
Topic: Lipo voltage Lolin D32
Replies: 2
Views: 7717

Re: Lipo voltage Lolin D32

Hi,
The battery voltage monitor is on GPIO#35 (not exposed). More info at https://youtu.be/yZjpYmWVLh8?t=88
by papaluna
Mon Apr 08, 2019 6:04 am
Forum: General Discussion
Topic: Forum search fails often
Replies: 6
Views: 6763

Re: Forum search fails often

Yes, a timeout in the PHP module or HTTPD module.
by papaluna
Fri Apr 05, 2019 11:06 am
Forum: General Discussion
Topic: Forum search fails often
Replies: 6
Views: 6763

Re: Forum search fails often

Thanks. That works :)
by papaluna
Fri Apr 05, 2019 8:53 am
Forum: General Discussion
Topic: Forum search fails often
Replies: 6
Views: 6763

Forum search fails often

Hi,
I noticed the last few weeks that the forum search functionality does not always work. It returns HTTP 500 especially when entering 2 words.

For example
https://www.esp32.com/search.php?keywor ... mit=Search
by papaluna
Thu Apr 04, 2019 12:20 pm
Forum: ESP32 Arduino
Topic: "Noisy" USB connection?
Replies: 6
Views: 7412

Re: "Noisy" USB connection?

"There are three mutually exclusive ways to provide power to the board (DevKitC & Pico-Kit): + Micro USB port, default power supply + 5V / GND header pins + 3V3 / GND header pins The power supply must be provided using one and only one of the options above , otherwise the board and/or the power supp...