Search found 8 matches

by my_abousamra
Mon Jul 03, 2017 2:10 pm
Forum: General Discussion
Topic: SPP profile in bluedroid missing?
Replies: 25
Views: 36502

Re: SPP profile in bluedroid missing?

In last release (#7), They have added 2 profiles A2DP Sink Profile and AVRCP Controller Profile.
What about SPP?
by my_abousamra
Mon Jul 03, 2017 2:06 pm
Forum: ESP-IDF
Topic: Bluetooth classic
Replies: 14
Views: 26317

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...
by my_abousamra
Wed Mar 29, 2017 4:16 pm
Forum: General Discussion
Topic: ESP32 WiFi non blocking send errors
Replies: 4
Views: 7349

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
by my_abousamra
Tue Mar 28, 2017 3:47 pm
Forum: General Discussion
Topic: ESP32 WiFi non blocking send errors
Replies: 4
Views: 7349

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...
by my_abousamra
Tue Mar 28, 2017 9:53 am
Forum: General Discussion
Topic: ESP32 WiFi non blocking send errors
Replies: 4
Views: 7349

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_...
by my_abousamra
Tue Feb 14, 2017 2:34 pm
Forum: ESP-IDF
Topic: User defined AT Command makes the module rest
Replies: 1
Views: 3888

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...
by my_abousamra
Thu Feb 09, 2017 1:22 pm
Forum: General Discussion
Topic: AT Command Processor
Replies: 7
Views: 10789

Re: AT Command Processor

run make menuconfig
go to Partation Table and select "Single factory app, no OTA"
this solved the problem for me
by my_abousamra
Mon Feb 06, 2017 10:18 am
Forum: Sample Code
Topic: Bluetooth Classic - How to implement it!
Replies: 11
Views: 17153

Re: Bluetooth Classic - How to implement it!

@ESP_igrr Is there any update about bluetooth classic firmware support?