Search found 200 matches

by liaifat85
Wed May 22, 2024 11:24 am
Forum: General Discussion
Topic: Matter Light example doesn't toggle using chip-tool
Replies: 2
Views: 819

Re: Matter Light example doesn't toggle using chip-tool

What is your circuit arrangement? There should be proper debouncing when it comes to button circuits.
by liaifat85
Tue May 21, 2024 6:31 pm
Forum: General Discussion
Topic: maker faire Rome (invitation)
Replies: 4
Views: 1415

Re: maker faire Rome (invitation)

Did espressif ever participate in this event earlier?
by liaifat85
Sun May 19, 2024 2:10 pm
Forum: ESP-IDF
Topic: BT component include error
Replies: 2
Views: 577

Re: BT component include error

Bluetooth should be enabled in your sdkconfig file. You can run idf.py menuconfig to open the configuration menu and check the Bluetooth settings.
by liaifat85
Sun May 19, 2024 2:00 pm
Forum: General Discussion
Topic: ESP32-S2 External RAM / PSRAM + I2S LCD + DMA
Replies: 6
Views: 1582

Re: ESP32-S2 External RAM / PSRAM + I2S LCD + DMA

You can allocate critical buffers that require high-speed access in internal SRAM instead of PSRAM. You can use PSRAM for less critical data that doesn’t need high-speed access.
by liaifat85
Sat May 18, 2024 11:02 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32-S2-SOLO-U2模组自制开发板下载代码遇到问题
Replies: 1
Views: 695

Re: ESP32-S2-SOLO-U2模组自制开发板下载代码遇到问题

这是警告,而不是错误。 我认为这不会影响您的代码的输出。
https://esp32.com/viewtopic.php?t=37447
by liaifat85
Sat May 18, 2024 10:48 am
Forum: General Discussion
Topic: SIG Qualified version of ESP-IDF
Replies: 1
Views: 426

Re: SIG Qualified version of ESP-IDF

I believe for this time being you need to use version 5.0 for your product registration to ensure compliance. Version 5.2.1 is not yet qualified on SIG.
by liaifat85
Sat May 18, 2024 10:40 am
Forum: General Discussion
Topic: ESP32-Cam
Replies: 3
Views: 759

Re: ESP32-Cam

You can check this github thread regarding this "E (543) camera: Camera probe failed with error 0x105(ESP_ERR_NOT_FOUND) Camera init failed with error 0x105" error. Somebody said that the problem was with the programming example camera web server. He/she modified the programming and managed to fix i...
by liaifat85
Sat May 18, 2024 10:29 am
Forum: ESP-IDF
Topic: ESP IDF A2DP Changing Sample Rate
Replies: 1
Views: 345

Re: ESP IDF A2DP Changing Sample Rate

The Bluetooth earbuds should support the sample rate you are setting. Do you know the specs of your earbuds?
by liaifat85
Sat May 18, 2024 7:43 am
Forum: General Discussion
Topic: FAILED: esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj
Replies: 2
Views: 717

Re: FAILED: esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj

The detailed error message shows the build failure on esp_err_to_name.c.obj. This can be related to specific code changes or missing includes.