This post is not very popular. :'( I am still coming up empty handed. One thing that makes this issue extremely hard to debug, is that my application used up all of the GPIO pins on the ESP32. So I cannot connect a JTAG and use a debugger.
Doing some deeper digging, I found out that the rfcomm ...
Search found 4 matches
- Fri Dec 12, 2025 1:43 pm
- Forum: ESP-IDF
- Topic: ESP32: BT Serial, how to do handshaking from the receiver side?
- Replies: 3
- Views: 3576
- Wed Nov 19, 2025 10:33 am
- Forum: ESP-IDF
- Topic: ESP32: BT Serial, how to do handshaking from the receiver side?
- Replies: 3
- Views: 3576
Re: ESP32: BT Serial, how to do handshaking from the receiver side?
A followup after digging through the Programming Guide for ideas. I basically want to try to not pull data from Bluedroid's queue, so that the queues fill up and Bluedroid might pause the sender automatically. For that, I don't want to read the data through the ESP_SPP_DATA_IND_EVT callback event ...
- Wed Nov 19, 2025 9:51 am
- Forum: ESP-IDF
- Topic: ESP32: BT Serial, how to do handshaking from the receiver side?
- Replies: 3
- Views: 3576
Re: ESP32: BT Serial, how to do handshaking from the receiver side?
I forgot to say something important: I am developing in the Arduino environment with arduino-esp32 version 2.0.17 .
This is because I am using the FabGL library, which cannot run with the latest arduino-esp32 version 3.3.4 because that uses too much memory.
After some searching, it looks like that ...
This is because I am using the FabGL library, which cannot run with the latest arduino-esp32 version 3.3.4 because that uses too much memory.
After some searching, it looks like that ...
- Tue Nov 18, 2025 7:14 pm
- Forum: ESP-IDF
- Topic: ESP32: BT Serial, how to do handshaking from the receiver side?
- Replies: 3
- Views: 3576
ESP32: BT Serial, how to do handshaking from the receiver side?
I have made a device with on an ESP32 which has an RS232 serial port that's connected to a device (an old computer in this case). Serial connection with the old computer works great.
In the ESP32, I also offer a Bluetooth Serial (SPP) service, to which I can connect with a PC. In my ESP32, I then ...
In the ESP32, I also offer a Bluetooth Serial (SPP) service, to which I can connect with a PC. In my ESP32, I then ...