Search found 15 matches

by kartikkman
Sat Dec 30, 2017 7:15 am
Forum: General Discussion
Topic: Error at vTaskDelay
Replies: 1
Views: 2919

Error at vTaskDelay

Hi , I was trying to implement a simple porgram on ESP_32 to learn about task & Logs , I tried to run program but it is making esp-32 constantly reset . Could you help me out ?? #include"driver/gpio.h" #include"stdlib.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include <stdio.h> #i...
by kartikkman
Sat Dec 16, 2017 8:09 am
Forum: General Discussion
Topic: Using esp_log_set_vprintf() function
Replies: 10
Views: 23122

Using esp_log_set_vprintf() function

Hi I am trying to do Remote Logging for the esp32 . I have implemented a function to convert the LOG data to the string which I will be sending over the Network . The problem I am stuck here is to use the esp_log_set_vprintf() ?? DO you have any example or what for the above ?? void LOG_TO_STRING(co...
by kartikkman
Mon Dec 11, 2017 4:48 pm
Forum: General Discussion
Topic: EventGroupWait
Replies: 1
Views: 2613

EventGroupWait

I wanted to ask whether can we use xEventGroupWaitBits() inside a function instead of using it inside a Task ??
I was trying to use it check the connection status of the ESP-32 ( Station Mode ) to the Access Point , I could not get is run ??
by kartikkman
Mon Oct 02, 2017 6:48 pm
Forum: General Discussion
Topic: Development Framework
Replies: 2
Views: 4503

Re: Development Framework

Thank Your so much for guiding me . There is one more thing I want to ask , that is about Communication Protocols . I watched your tutorial for using BMP180 with I2C interface & found that amazing . I am trying to do same thing with SPI Interface. Here is the thing I want to ask : I went to look out...
by kartikkman
Mon Oct 02, 2017 7:59 am
Forum: General Discussion
Topic: Development Framework
Replies: 2
Views: 4503

Development Framework

What are the advantages of using FreeRTOS environment over Arduino Wrapped Framework ?