Search found 48 matches

by RandomInternetGuy
Sun Aug 04, 2024 3:53 pm
Forum: ESP-IDF
Topic: Using the built-in USB/JTAG interface for my design
Replies: 2
Views: 1132

Re: Using the built-in USB/JTAG interface for my design

That works. The hardware provides two different endpoints on the USB interface. One is for JTAG and the other endpoint is either virtual serial CDC/ADM (I can't recall which it is, but "serial port") or whatever you want it to be. So if you create ESP32 software to be an endpoint for a mass storage ...
by RandomInternetGuy
Sun Aug 04, 2024 3:48 pm
Forum: ESP-IDF
Topic: Build freezes
Replies: 1
Views: 717

Re: Build freezes

Bizarre problems on Windows that are never reproducible to anyone else (obviously "blink" is a well-traveled road) are often the result of AntiVirus malware. Disabling that as a test and reinstalling IDF (in case THAT was eaten by your A/V) would be my starting point. Something is interfering with y...
by RandomInternetGuy
Sun Aug 04, 2024 3:43 pm
Forum: ESP-IDF
Topic: ESP32S3 failure in esp_ota_end()
Replies: 12
Views: 5368

Re: ESP32S3 failure in esp_ota_end()

They ARE const in c++. This is one of many footguns removed in the improved language. C89 and 99 have a goofy exemption to allow interop with K&R that's one of those rare cases - beyond sizeof()- where a char[N] and a char* aren't REALLY the same type. Literals decay to a const char* even in C. GCC ...
by RandomInternetGuy
Sun Aug 04, 2024 2:28 pm
Forum: ESP-IDF
Topic: Enabling PSRAM
Replies: 3
Views: 868

Re: Enabling PSRAM

> - Added "-mfix-esp32-psram-cache-issue" as I do not have the rev3 chip Stop that. That flag is for a different chip. ESP32 and ESP32-S3 are NOT THE SAME CHIP. Did you ever actually call psram_init()? Did you verify that any of the hundreds of other projects successfully working on S3 boards work o...
by RandomInternetGuy
Sun Aug 04, 2024 2:08 pm
Forum: Hardware
Topic: Please check my esp32-s3 pins
Replies: 4
Views: 1490

Re: Please check my esp32-s3 pins

1) Before you build, prototype. Dev boards are faster and cheaper than the fastest and cheapest PCB house.

2) Reading datasheets is essential, as already answered, but also see. https://github.com/atomic14/esp32-s3-pinouts
by RandomInternetGuy
Wed Jul 03, 2024 9:08 am
Forum: General Discussion
Topic: Forum search ignores search characters
Replies: 6
Views: 3090

Re: Forum search ignores search characters

> You make a good point, We're engineers. We make data-driven decisions. :-) > Discourse, not Discord Excellent point. I dislike the Arduino discourse forums, but I don't have a raging tate for them like I do the discord groups. > I can't find that setting. I'll admit that my PHPBB experience was, o...
by RandomInternetGuy
Wed Jul 03, 2024 2:43 am
Forum: General Discussion
Topic: Forum search ignores search characters
Replies: 6
Views: 3090

Re: Forum search ignores search characters

I can respect that. I've run public forums (including multiple phpbb) and defending them against scum is challenging. FWIW it was my experience that the only difference of turning this knob down is the SIZE of the index. It increases because it adds an index of the article number (and, I think, offs...
by RandomInternetGuy
Tue Jul 02, 2024 11:45 pm
Forum: General Discussion
Topic: Linker doesn't report multiple definitions of symbol
Replies: 3
Views: 1361

Re: Linker doesn't report multiple definitions of symbol

close() - and other symbols provided by POSIX or ISO c/c++ may be a special case. Somewhere in the later System V days of ELF, the OS (UNIX originally, later newlib and such) would make open, malloc, write, and so on into weak symbols (multiple definitions can be presents; first one found is used) a...
by RandomInternetGuy
Tue Jul 02, 2024 10:38 pm
Forum: General Discussion
Topic: Forum search ignores search characters
Replies: 6
Views: 3090

Re: Forum search ignores search characters

@ESPSprite, while I agree that phpbb should have been left in previous centuries this actually IS something that you (the royal "you" at ESP, not necessarily you personally) can control. Admin->General->Search(down at the bottom) here is a setting for. "Min characters indexed by search". Change this...
by RandomInternetGuy
Tue Jul 02, 2024 5:09 pm
Forum: General Discussion
Topic: 10x faster flash programming. Source code ESP32ROM.STUB_CODE?
Replies: 6
Views: 2563

Re: 10x faster flash programming. Source code ESP32ROM.STUB_CODE?

Thank you, that resolves that mystery. We're both likely bound by the actual flash speed. Maybe life is better on a device with QIO flash. If you're at 460k on a "real" UART, you probably can get a doubling of speed just going up to 1Mbps or so. If you're on a CDC/ACM device, that speed doesn't matt...