Search found 46 matches

by StridingDragon
Wed Nov 04, 2020 8:09 pm
Forum: ESP-IDF
Topic: What is the BLE GATT length limit?
Replies: 2
Views: 2390

What is the BLE GATT length limit?

Is there a limit to the length of the data that can be submitted to esp_ble_gatts_send_indicate()?
Do I have to ensure that the data fit into a single packet, or will the GATT server break longer messages not small link-layer packets for me automatically?
by StridingDragon
Fri Sep 25, 2020 9:06 pm
Forum: ESP-ADF
Topic: Bluetooth library source code?
Replies: 1
Views: 3133

Bluetooth library source code?

I've been running into some issues with BLE where packets arrive garbled very frequently and I was trying to look into the Bluetooth stack used in the ESP32. However, I can only find libbt.a as a library and no source code for it. Can someone please point me towards the source code for the Bluetooth...
by StridingDragon
Mon Feb 24, 2020 12:01 am
Forum: General Discussion
Topic: Code Performance Analyzer
Replies: 2
Views: 3636

Re: Code Performance Analyzer

Ah, very cool. Thank you so much.
by StridingDragon
Fri Jan 31, 2020 1:02 am
Forum: ESP-IDF
Topic: Virtual address mapping through MMU
Replies: 1
Views: 2282

Virtual address mapping through MMU

Is it possible to allocate some internal RAM and then tell the MMU, I want to access this block through the address 0xA000_0000, for example? The internal memory is too fragmented for me to allocate a large buffer I need, so I was hoping I might create a fantasy address space and tell the MMU to map...
by StridingDragon
Tue Jan 28, 2020 10:33 pm
Forum: ESP-IDF
Topic: -mmac16 compiler option not working in g++
Replies: 1
Views: 2303

-mmac16 compiler option not working in g++

Am I mistaken or does the -mmac16 compiler option to generate mac16 instructions not work using g++?
by StridingDragon
Tue Jan 21, 2020 4:25 am
Forum: General Discussion
Topic: Code Performance Analyzer
Replies: 2
Views: 3636

Code Performance Analyzer

I am in the process of writing some finely tuned modules where performance is critical and I was wondering if anyone is aware of any Performance Analyzers for the ESP32. I'm looking for something like VTune that will analyze my code—either statically or at runtime—and gives me information about cach...
by StridingDragon
Thu Jan 16, 2020 1:27 am
Forum: ESP-IDF
Topic: Xtensa TIE Extension
Replies: 2
Views: 2799

Re: Xtensa TIE Extension

Ah, I get it. Thank you so much for the clarification.
by StridingDragon
Wed Jan 15, 2020 9:54 pm
Forum: ESP-IDF
Topic: Xtensa TIE Extension
Replies: 2
Views: 2799

Xtensa TIE Extension

I've been trying to see if there is a way to use Xtensa TIE Extensions with the ESP32 but it appears there is only the SDK available from Cadence for $1000/year per seat. Considering that virtually everyone tells me the SDK and tool suite is absolute crap, using an outdated compiler, broken tools th...
by StridingDragon
Thu Dec 05, 2019 4:15 am
Forum: General Discussion
Topic: How to increase SPIRAM speed?
Replies: 1
Views: 2289

How to increase SPIRAM speed?

I am running an ESP32 with embedded 16MB SOM SPI RAM in quad IO mode at 80MHz. However, the RAM is rated at 133 MHz and I have not found a way to actually run the SPI bus for SPIRAM/PSRAM at any frequency other than 40MHz or 80MHz. Could anyone point me in the right direction how to go about doing t...
by StridingDragon
Fri Sep 13, 2019 3:37 am
Forum: ESP-IDF
Topic: Source code for memcpy implementation
Replies: 2
Views: 4474

Re: Source code for memcpy implementation

Thank you so much!