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?
Search found 7 matches
- Thu Mar 16, 2017 8:30 am
- Forum: General Discussion
- Topic: how to use some libraries based on cpp?
- Replies: 5
- Views: 9108
- Thu Mar 16, 2017 2:03 am
- Forum: General Discussion
- Topic: how to use some libraries based on cpp?
- Replies: 5
- Views: 9108
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?
- Thu Jan 05, 2017 2:37 pm
- Forum: General Discussion
- Topic: Wifi signal strength
- Replies: 1
- Views: 7785
Wifi signal strength
Hi, can I adjust (decrease) the wifi signal strength on esp-idf?
- Tue Jan 03, 2017 5:35 am
- Forum: General Discussion
- Topic: GATT Server/Client
- Replies: 1
- Views: 5310
GATT Server/Client
Hi, I have a simple question.
In GATT Server/Client example, what are the basic APIs to write/read data?
In GATT Server/Client example, what are the basic APIs to write/read data?
- Thu Dec 22, 2016 10:10 am
- Forum: Report Bugs
- Topic: xQueueSend
- Replies: 1
- Views: 8097
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 ...
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 ...
- Mon Dec 19, 2016 8:19 am
- Forum: General Discussion
- Topic: Pairing with ESP32 and PC
- Replies: 3
- Views: 10199
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 ...
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 ...
- Sun Dec 18, 2016 6:48 am
- Forum: Report Bugs
- Topic: GATT server example
- Replies: 0
- Views: 4449
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 ...
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 ...