Search found 7 matches

by ryuhhh
Thu Mar 16, 2017 8:30 am
Forum: General Discussion
Topic: how to use some libraries based on cpp?
Replies: 5
Views: 7979

Re: how to use some libraries based on cpp?

Thank you for the kind replies, ESP_Angus and N. Kolban.
I am using basic idf and I have built my project, after just including some .cpp files in other .c files.
Am I doing wrong?? If it needs other procedures or configurations, could you please let me know?
by ryuhhh
Thu Mar 16, 2017 2:03 am
Forum: General Discussion
Topic: how to use some libraries based on cpp?
Replies: 5
Views: 7979

how to use some libraries based on cpp?

Hi, I am trying to use cpp based codes, but the build result returns some syntax errors. Is it possible to use cpp syntax with IDF?
by ryuhhh
Thu Jan 05, 2017 2:37 pm
Forum: General Discussion
Topic: Wifi signal strength
Replies: 1
Views: 6765

Wifi signal strength

Hi, can I adjust (decrease) the wifi signal strength on esp-idf?
by ryuhhh
Tue Jan 03, 2017 5:35 am
Forum: General Discussion
Topic: GATT Server/Client
Replies: 1
Views: 4586

GATT Server/Client

Hi, I have a simple question.

In GATT Server/Client example, what are the basic APIs to write/read data?
by ryuhhh
Thu Dec 22, 2016 10:10 am
Forum: Report Bugs
Topic: xQueueSend
Replies: 1
Views: 6792

xQueueSend

Hi, I have a problem to use xQueueSend function. Here is my code. xQueueHandle hQueue1 = 0; void Sender_Task(void *p) { int i=0; while(1) { printf("Send %i to receiver task\n", i); if (! xQueueSend(hQueue1, &i, 1000)) { printf("Failed to send to queue\n"); } i++; vTaskDelay(100); } } void Receiver_T...
by ryuhhh
Mon Dec 19, 2016 8:19 am
Forum: General Discussion
Topic: Pairing with ESP32 and PC
Replies: 3
Views: 8844

Pairing with ESP32 and PC

Hi. I am using an ESP32 module as a BLE server. I would like to pair with PC via a BLE dongle, but ESP32 does not make pairing with PC although I have downloaded BLE_ADV/GATT Server example. I would like to know is it possible to pair with PC via a BLE dongle or laptop on Windows 10. Please let me k...
by ryuhhh
Sun Dec 18, 2016 6:48 am
Forum: Report Bugs
Topic: GATT server example
Replies: 0
Views: 3505

GATT server example

Hi, I am using ESP32 and esp-idf for BLE communication with PC. My questions related to BLE communication are follows. 1. Could you please give me more detailed example code for BLE, GATT Server? - I think that the given examples, GATT server/client, can make a connection well between two modules, E...