In last release (#7), They have added 2 profiles A2DP Sink Profile and AVRCP Controller Profile.
What about SPP?
Search found 8 matches
- Mon Jul 03, 2017 2:10 pm
- Forum: General Discussion
- Topic: SPP profile in bluedroid missing?
- Replies: 25
- Views: 40013
- Mon Jul 03, 2017 2:06 pm
- Forum: ESP-IDF
- Topic: Bluetooth classic
- Replies: 14
- Views: 28114
Re: Bluetooth classic
If you are interested in a particular profile, then as a workaround until the IDF doesn't support it yet, you can write it manually, the "esp_vhci*" can be used for this. At least a bare minimum of profile stacks for testing purposes can be written, if you're just waiting for it to be available. An...
- Wed Mar 29, 2017 4:16 pm
- Forum: General Discussion
- Topic: ESP32 WiFi non blocking send errors
- Replies: 4
- Views: 7975
Re: ESP32 WiFi non blocking send errors
Is there any way to speed up sending data over wifi? I don't know very much about lwip but i think i can increase its sending speed by increasing allocating memory or any other optimization
- Tue Mar 28, 2017 3:47 pm
- Forum: General Discussion
- Topic: ESP32 WiFi non blocking send errors
- Replies: 4
- Views: 7975
Re: ESP32 WiFi non blocking send errors
Actually, This code is just a test but my original code is 2 tasks, first one is a uart task that receives data from other microcontroller with that rate (I can't change it) and I push that data into a queue to a wifi task that sends that data to a server (local server in that test in the same LAN n...
- Tue Mar 28, 2017 9:53 am
- Forum: General Discussion
- Topic: ESP32 WiFi non blocking send errors
- Replies: 4
- Views: 7975
ESP32 WiFi non blocking send errors
Dears, I'm trying to send data over ESP32 wifi (600 bytes every 25 msec) in non blocking send mode but after a while I got EWOULDBLOCK and if I disables nagle's algorithm I got ENOMEM What should I do to make it send data correctly? while (1) { for ( i = 3; i > 0; i-- ) { for ( len = 0 ; len < TEST_...
- Tue Feb 14, 2017 2:34 pm
- Forum: ESP-IDF
- Topic: User defined AT Command makes the module rest
- Replies: 1
- Views: 4218
User defined AT Command makes the module rest
I'm implementing a user defined AT command but it makes the module reset In at_task.c static uint8_t at_exeCmdTest(uint8_t para_num) { int32_t cnt = 0; uint8_t *str; uint8_t *str2; if (para_num != 1) { return ESP_AT_RESULT_CODE_ERROR; } str = (uint8_t *)malloc(32); if (!str) { return ESP_AT_RESULT_C...
- Thu Feb 09, 2017 1:22 pm
- Forum: General Discussion
- Topic: AT Command Processor
- Replies: 7
- Views: 11585
Re: AT Command Processor
run make menuconfig
go to Partation Table and select "Single factory app, no OTA"
this solved the problem for me
go to Partation Table and select "Single factory app, no OTA"
this solved the problem for me
- Mon Feb 06, 2017 10:18 am
- Forum: Sample Code
- Topic: Bluetooth Classic - How to implement it!
- Replies: 11
- Views: 18887
Re: Bluetooth Classic - How to implement it!
@ESP_igrr Is there any update about bluetooth classic firmware support?