Search found 6 matches
- Mon Feb 20, 2023 1:41 pm
- Forum: ESP-IDF
- Topic: How to resolve conflicting component names
- Replies: 1
- Views: 2390
Re: How to resolve conflicting component names
Hello, Szabi, thank you for the question. Usually, this problem happens if you have EXTRA_COMPONENT_DIRS set in your project. Dependencies in EXTRA_COMPONENT_DIRS have the same priority as ones installed with the component manager. To solve it you can either remove the dependency from idf_component....
- Wed Oct 05, 2022 10:29 am
- Forum: Report Bugs
- Topic: Cannon build any projects: ninja: error: loading 'build.ninja': The system cannot find the file specified.
- Replies: 1
- Views: 8277
Re: Cannon build any projects: ninja: error: loading 'build.ninja': The system cannot find the file specified.
Hi Steve, What version of Windows are you using? It looks like your root certificates are bit out of date. If you are on Windows 8.1 or earlier, please try to install this update https://support.microsoft.com/en-us/topic/support-for-urgent-trusted-root-updates-for-windows-root-certificate-program-in...
- Mon May 09, 2022 9:25 am
- Forum: ESP-IDF
- Topic: Espressif component registry
- Replies: 4
- Views: 3660
Re: Espressif component registry
Hi UncleRus, As for the first 2 of your questions, we still looking for the best practices, so didn't open the registry public uploads yet. The best way now is to track the progress in this issue: https://github.com/espressif/idf-component-manager/issues/4 As for `create-remote-component` it was onl...
- Tue Oct 19, 2021 1:30 pm
- Forum: ESP-IDF
- Topic: Problem installing ESP IDF with eclipse
- Replies: 3
- Views: 3054
Re: Problem installing ESP IDF with eclipse
Hello, raspitin
Could you please try once again, it should work now
https://dl.espressif.com/dl/idf-eclipse ... es/latest/
Could you please try once again, it should work now
https://dl.espressif.com/dl/idf-eclipse ... es/latest/
- Thu Sep 16, 2021 4:38 pm
- Forum: News
- Topic: Introducing the component manager for the ESP-IDF
- Replies: 0
- Views: 25015
Introducing the component manager for the ESP-IDF
Hi folks, we would like to introduce to you a new tool for the ESP-IDF - the IDF Component Manager (Beta). The purpose of IDF Component Manager is to simplify the process of publishing and installation of ESP-IDF components. It does roughly the same thing as npm in Node.js or pip in Python ecosystem...
- Wed Apr 25, 2018 1:38 pm
- Forum: General Discussion
- Topic: [VIDEO] Freshen - device management for ESP32
- Replies: 4
- Views: 8038
Re: [VIDEO] Freshen - device management for ESP32
Do you have an example how to use it with esp-idf without arduino? Should I implement some call back? At the moment my code looks like: ... void task_ota_update(void *ignore) { while (true) { vTaskDelay(50 / portTICK_RATE_MS); freshen_poll_dash(&ctx, FIRMWARE_VERSION, FRESHEN_TOKEN); } } void app_ma...