Search found 2311 matches

by chegewara
Sun Sep 29, 2024 8:16 pm
Forum: ESP-IDF
Topic: Project lvgl + wifi softAP +ble client server
Replies: 1
Views: 88

Re: Project lvgl + wifi softAP +ble client server

Im not sure what documentation you are referring to, but you can use ble and wifi at the same time.

Just in case you have problems with memory shortage, not iram related you mentioned, you should consider to use nimble stack.
by chegewara
Wed Sep 25, 2024 7:21 am
Forum: General Discussion
Topic: esp wifi remote or esp hosted components
Replies: 0
Views: 695

esp wifi remote or esp hosted components

Hi, maybe this is a lame question or maybe its too early to think about such configuration, but is it possible to connect few esp32Cx/Hx to esp32P4 and use each one as a wireless radio with esp remote wifi and/or esp hosted components? I am thinking about such use case: - esp32 P4 is a brain - esp32...
by chegewara
Mon Sep 23, 2024 5:19 pm
Forum: General Discussion
Topic: Help to run cmake before embed_file
Replies: 8
Views: 1780

Re: Help to run cmake before embed_file

This may be not very elegant solution, and actually im not sure if it works, but it is building at least idf_component_register(SRCS "http.cpp" INCLUDE_DIRS "." REQUIRES esp_http_server) set (WEB_DIR ${COMPONENT_DIR}/web) add_custom_command( OUTPUT "${WEB_DIR}/zip/index.html.gz" COMMAND COMMAND gzip...
by chegewara
Mon Sep 23, 2024 2:42 am
Forum: ESP-IDF
Topic: How to temporarily PAUSE Bluetooth / BLE
Replies: 5
Views: 717

Re: How to temporarily PAUSE Bluetooth / BLE

Did you try to do sampling on second core, or even better to use second core only for sampling task?
by chegewara
Fri Sep 20, 2024 11:30 pm
Forum: General Discussion
Topic: Help to run cmake before embed_file
Replies: 8
Views: 1780

Re: Help to run cmake before embed_file

The DEPENDS argument to target_add_binary_data ensures that the target executes first. add_custom_target(my_process COMMAND ...) target_add_binary_data(my_target "my_embed_file.bin" BINARY DEPENDS my_process) Is not that you should setup it like this? add_custom_target( process_http_files ALL COMMA...
by chegewara
Thu Sep 12, 2024 10:47 am
Forum: General Discussion
Topic: eps32 p4 key management unit
Replies: 3
Views: 885

Re: eps32 p4 key management unit

It is espressif internal issues tracking number, just like on github they have IDFGH-xxx.

Strange is that espressif claim this feature support already has been added in February comment
https://github.com/espressif/esp-idf/is ... 1923195626
by chegewara
Thu Sep 12, 2024 10:44 am
Forum: General Discussion
Topic: is it possible to configure an input port? A parallel input on 8 pins that loads a register?
Replies: 4
Views: 979

Re: is it possible to configure an input port? A parallel input on 8 pins that loads a register?

Thank you. I've seen the P4 version but there is no documentation available on the Espressif site AFAIK, and I don't even know if it is produced at the moment. With 55 GPIO it could be a real monster but I've to develop my project in months, not years, in order to show a prototype ASAP to the publi...
by chegewara
Thu Sep 12, 2024 2:34 am
Forum: ESP-IDF
Topic: Flashing new Code to an ESP32s3 While it is Acting as a MSC
Replies: 4
Views: 992

Re: Flashing new Code to an ESP32s3 While it is Acting as a MSC

Yes, it should be possible with composite USB device, and without hardware DTR/RTS. As far as i remember espressif arduino team implemented this some time ago. Espressif is using "special pattern" to switch esp32 into download mode. Its some mix of software DTR/RTS and uart speed set to 1200bps. Whe...
by chegewara
Wed Sep 11, 2024 11:21 pm
Forum: General Discussion
Topic: is it possible to configure an input port? A parallel input on 8 pins that loads a register?
Replies: 4
Views: 979

Re: is it possible to configure an input port? A parallel input on 8 pins that loads a register?

If i understand correctly you may make us of parallel IO on H2, C5, C6 or P4
https://docs.espressif.com/projects/esp ... arlio.html

P4 is most powerful and can handle up to 16+2 lines.