Search found 44 matches
- Tue Sep 24, 2024 12:36 pm
- Forum: Hardware
- Topic: ESP32 External Oscillators Required?
- Replies: 3
- Views: 4569
Re: ESP32 External Oscillators Required?
Is it required to run at all, or required for wireless functionality only? I remember researching this long ago, but I've forgotten since then.
- Thu Aug 22, 2024 4:13 pm
- Forum: ESP-IDF
- Topic: Does usb device support arbitrary (no/generic class) usb device?
- Replies: 0
- Views: 614
Does usb device support arbitrary (no/generic class) usb device?
I'm trying to create a simple "hello world" usb device, that doesn't follow any prespecified class type (not HID/MSC/etc), because I don't want any preexisting generic driver from my PC to pick it up. I'm trying to code a custom driver that kicks in based solely on VID:PID, which I have chosen arbit...
- Wed Aug 21, 2024 3:28 pm
- Forum: ESP-IDF
- Topic: Slow Compilation Speed (<22% CPU Utilization)
- Replies: 1
- Views: 708
Slow Compilation Speed (<22% CPU Utilization)
Recently, compilation speed is not rising above 22% except for sporadic spikes to 50%. Does anyone have an idea what is causing this? This is the case irrespective if I compile in CLI or VSCode. Is anyone else experiencing this? I'm on Ubuntu 24.10 x64, Ryzen 5500U, 8GB RAM, Samsung Evo 970 Plus NVM...
- Sat Dec 30, 2023 11:34 pm
- Forum: Hardware
- Topic: ESP32-S3 USB OTG - USB Hub support?
- Replies: 28
- Views: 29053
Re: ESP32-S3 USB OTG - USB Hub support?
Why not just open it up as beta and let anyone/everyone test at their leisure? That's effectively how things are anyways with the rest of esp-idf, everybody heads to the issues section to report problems. I don't think it makes sense to require anyone/someone to proclaim themselves as official teste...
- Sat Dec 30, 2023 11:27 pm
- Forum: Hardware
- Topic: Is redirecting stdout over JTAG possible?
- Replies: 2
- Views: 1584
Is redirecting stdout over JTAG possible?
Hi,
I've recently begun debugging esp32 through openocd/jtag. However, serial output is sent to UART0. Is it possible to send this data in-band over JTAG?
I've recently begun debugging esp32 through openocd/jtag. However, serial output is sent to UART0. Is it possible to send this data in-band over JTAG?
- Sat Dec 30, 2023 11:16 pm
- Forum: ESP-MDF
- Topic: not able to build mdf examples
- Replies: 3
- Views: 32405
Re: not able to build mdf examples
I don't have experience with AWS IOT. But more importantly, MDF hasn't been updated in years, it is presumed defunct. I would advise trying BLE-Mesh instead or 3rd party libraries, such as ESP-Now BATMAN, or https://github.com/aZholtikov/ZHNetwork . PainlessMesh is another alternative, but was a pai...
- Wed Dec 13, 2023 5:40 pm
- Forum: ESP-IDF
- Topic: Some linker definitions seem to be in reserved regions, how can this be?
- Replies: 3
- Views: 67105
Re: Some linker definitions seem to be in reserved regions, how can this be?
I'm aware of remapping... but I couldn't find anything in the TRM that mentions that ROM0 specifically is mappable to a reserved region in I-space. Could you please point me to the specific page/section? Perhaps this is mentioned in some source file instead?
- Tue Dec 12, 2023 6:58 pm
- Forum: ESP-IDF
- Topic: Some linker definitions seem to be in reserved regions, how can this be?
- Replies: 3
- Views: 67105
Some linker definitions seem to be in reserved regions, how can this be?
Hi, The linker script "...../esp_rom/esp32/ld/esp32.rom.libgcc.ld" starts as follows: [Codebox] /* Unlike other ROM functions which are exported using PROVIDE, which declares weak symbols, these libgcc functions are exported using assignment, which declares strong symbols. This is done so that ROM f...
- Tue Dec 12, 2023 6:53 pm
- Forum: ESP-IDF
- Topic: ESP32-S3 Guru meditation error using LVGL library
- Replies: 5
- Views: 32842
Re: ESP32-S3 Guru meditation error using LVGL library
That means your display was never working. You should ask in the LVGL forums why this is so, and mention what controller it is and show how it is being created (in software) and how it is wired to mcu.
- Tue Dec 12, 2023 6:51 pm
- Forum: ESP-IDF
- Topic: ESP32-S3 Guru meditation error using LVGL library
- Replies: 5
- Views: 32842
Re: ESP32-S3 Guru meditation error using LVGL library
it means your display isn't setup correctly. The object must exist and you must pass its handle to lvgl. lvgl unfortunately doesn't check & gracefully handle the case where the display is not set up hence its address is NULL. lvgl doesn't automatically setup the display.