Search found 10 matches

by vivek.vaghela
Tue Feb 05, 2019 12:14 pm
Forum: General Discussion
Topic: ESP32 Serial Upgrade over SDIO
Replies: 1
Views: 2842

ESP32 Serial Upgrade over SDIO

Hi,
I have connected esp32 on my XYZ MCU over SDIO interface and I want to serial upgrade ESP32's Firmware.
Is it possible?
by vivek.vaghela
Thu Jan 31, 2019 3:38 pm
Forum: General Discussion
Topic: ESP32-WIFI over SDIO
Replies: 3
Views: 6973

Re: ESP32-WIFI over SDIO

Hi, Now I am able to send AT commands like "echo -ne 'AT\r\n' > /dev/ttyUSB1" in ESP32+AT UART Example. Same like this I am able to run this example by changing the interface from UART to SDIO. Now I want to connect ESP32+AT SDIO Slave module with imx6ull SDIO Host. How to do this? Should I require ...
by vivek.vaghela
Thu Jan 24, 2019 2:33 pm
Forum: General Discussion
Topic: ESP32-WIFI over SDIO
Replies: 3
Views: 6973

Re: ESP32-WIFI over SDIO

Thanks for the reply. I have cloned ESP32+AT code by git clone --recursive https://github.com/espressif/esp32-at.git. I am trying to run that example, according to the following video clip: https://www.youtube.com/watch?v=HBrEMIzm_uY&authuser=0 According to the given pin description, I have attached...
by vivek.vaghela
Fri Jan 18, 2019 2:45 pm
Forum: General Discussion
Topic: ESP32-WIFI over SDIO
Replies: 3
Views: 6973

ESP32-WIFI over SDIO

I want to use an ESP32 to provide Wi-Fi capability to a host MCU.
So is it Possible to configure ESP32 as a SDIO slave to provide Wi-Fi capabilities to any MCU host?
Is there any prebuilt binary or example source code available that implements the above functionality in esp-idf SDK ?
by vivek.vaghela
Thu Nov 29, 2018 7:30 am
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

Re: issue in using esp_http_client

I think the fix for this issue is in branch release/v3.2(https://github.com/espressif/esp-idf/blob/release/v3.2/components/esp_http_client/esp_http_client.c) esp_http_client module but not yet released, am I wright? Should I use this branch to resolve my issue? As there are new APIs esp_http_client...
by vivek.vaghela
Thu Nov 29, 2018 7:23 am
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

Re: issue in using esp_http_client

Hi ESP_tuanpm , Thanks for the answer, But in my case: I don't want to close the connection every time, after opening the connection first time for the first request I can call the esp_http_client_set_header api in the 'HTTP_EVENT_ON_CONNECTED', but what to do for the next requests without closing t...
by vivek.vaghela
Wed Nov 28, 2018 5:55 am
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

Re: issue in using esp_http_client

I think the fix for this issue is in branch release/v3.2(https://github.com/espressif/esp-idf/bl ... p_client.c) esp_http_client module but not yet released, am I wright?
Should I use this branch to resolve my issue?
by vivek.vaghela
Wed Nov 28, 2018 4:46 am
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

Re: issue in using esp_http_client

Currently I am using esp-idf-v3.1-beta1.
by vivek.vaghela
Tue Nov 27, 2018 7:05 pm
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

Re: issue in using esp_http_client

Hi there,
Please Guide Me. Thanks In advance.
by vivek.vaghela
Mon Nov 26, 2018 5:49 am
Forum: General Discussion
Topic: issue in using esp_http_client
Replies: 7
Views: 10694

issue in using esp_http_client

I have one http client application which communicates to the Cloud. I use http client API's as follows: 1> esp_http_client_init. 2> esp_http_client_set_header to set the headers. 3> then 'esp_http_client_open' to open the connection. 4> esp_http_client_get_content_length 5> esp_http_client_write 6> ...