Search found 62 matches

by rahul.b.patel
Tue Mar 26, 2019 4:01 am
Forum: ESP-IDF
Topic: Need help with I2C register access in bootloader
Replies: 4
Views: 6309

Re: Need help with I2C register access in bootloader

Soloxxx666 wrote:
Mon Mar 25, 2019 7:31 pm
Hi Raul,
I'm having the same problem. Did you manage to resolve this?

Best.
Hello,
No I dropped this and skipped to make any changes in bootloader it self, so did not check anything further in this.
by rahul.b.patel
Fri Mar 22, 2019 12:56 pm
Forum: ESP-IDF
Topic: Priority interface while using Ethernet and WiFi in STA mode together
Replies: 4
Views: 7288

Re: Priority interface while using Ethernet and WiFi in STA mode together

Hi WiFive,
Thanks for the quick response,
Now I am able to set default interface Eth/wifi with setting default netif.

Thanks.
by rahul.b.patel
Fri Mar 22, 2019 11:15 am
Forum: ESP-IDF
Topic: Priority interface while using Ethernet and WiFi in STA mode together
Replies: 4
Views: 7288

Priority interface while using Ethernet and WiFi in STA mode together

Hello, I am initializing Ethernet and WiFi in STA mode from main, then ESP32 is getting connected to cloud once both Ethernet and WiFi STA gets IP. I checked by disconnecting Ethernet and WiFi one by one to check which interface is being used for cloud connection, and I found that there is no effect...
by rahul.b.patel
Wed Oct 24, 2018 4:12 am
Forum: ESP-IDF
Topic: Socket connect fails with ERRNO 113 with http client
Replies: 11
Views: 20544

Re: Socket connect fails with ERRNO 113 with http client

The other thing you can try, which is strongly recommended, is to checkout the "release/v2.1" branch (currently at commit c70a613127). Compared to updating to v3.x, this shouldn't require any code changes, but there are a number of fixes in that branch including fixes for problems writing to SPI fl...
by rahul.b.patel
Tue Oct 23, 2018 7:30 am
Forum: ESP-IDF
Topic: Socket connect fails with ERRNO 113 with http client
Replies: 11
Views: 20544

Re: Socket connect fails with ERRNO 113 with http client

The other thing you can try, which is strongly recommended, is to checkout the "release/v2.1" branch (currently at commit c70a613127). Compared to updating to v3.x, this shouldn't require any code changes, but there are a number of fixes in that branch including fixes for problems writing to SPI fl...
by rahul.b.patel
Wed Oct 17, 2018 4:28 am
Forum: ESP-IDF
Topic: Socket connect fails with ERRNO 113 with http client
Replies: 11
Views: 20544

Socket connect fails with ERRNO 113 with http client

Hello, I am facing issue with following mention scenario with http client used to download file to ESP32. I am using IDF2.1 currently. 1. Create socket and connect to server. 2. HTTP GET requests for chunk size of @1500 until all data has been received. 3. Parse and Store received payload into flash...
by rahul.b.patel
Mon Oct 01, 2018 3:46 am
Forum: ESP-IDF
Topic: Need help with I2C register access in bootloader
Replies: 4
Views: 6309

Re: Need help with I2C register access in bootloader

Hello Guys,
Can you please look above configurations if I am missing anything.?

Thanks.
by rahul.b.patel
Wed Sep 26, 2018 3:53 am
Forum: ESP-IDF
Topic: Need help with I2C register access in bootloader
Replies: 4
Views: 6309

Re: Need help with I2C register access in bootloader

Hello Guys,
Can any body help me with this.?

Thanks.
by rahul.b.patel
Tue Sep 25, 2018 6:26 am
Forum: ESP-IDF
Topic: Need help with I2C register access in bootloader
Replies: 4
Views: 6309

Need help with I2C register access in bootloader

Hello, I have a requirement to use I2C in bootloader in master mode. As I2C driver is not added as component into bootloader, using I2C with low level registers is the only way to do it. I have tried to configure I2C registers from TRM as below, but not getting success. Can anyone point me out what ...
by rahul.b.patel
Tue Sep 18, 2018 8:07 am
Forum: General Discussion
Topic: UART ISR not located in IRAM
Replies: 14
Views: 17977

Re: UART ISR not located in IRAM

No, I think this is just a chosen tradeoff due to the amount of code which needs moving to IRAM. We have some features coming in future IDF versions which will make it easier to configure which code is moved into IRAM, but you should be able to modify uart.c now to do this. Just take care that all ...