Search found 41 matches

by dhananjay.sutariya
Tue May 21, 2019 6:20 am
Forum: ESP-IDF
Topic: ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.
Replies: 7
Views: 9057

Re: ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.

Error: JTAG scan chain interrogation failed: all zeroes Error: Check JTAG interface, timings, target power, etc. Check your hardware, there's probably something wrong there. Also, make sure that whatever code is running on your ESP32 doesn't reconfigure the JTAG pins for other use. Hi ESP_Sprite, T...
by dhananjay.sutariya
Mon May 20, 2019 12:15 pm
Forum: ESP-IDF
Topic: ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.
Replies: 7
Views: 9057

ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.

Hi all, I'm trying to debug my ESP32 through JTAG interface .My debug module which is used is FT2232HL. After following all the steps that are mentioned thoroughly on this link: https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/jtag-debugging/index.html#jtag-debugging-building-openocd...
by dhananjay.sutariya
Fri May 17, 2019 7:48 am
Forum: General Discussion
Topic: How to get the tickrate of RTC ?
Replies: 5
Views: 5796

Re: How to get the tickrate of RTC ?

Hi Wifive,
How about normal Mode .
How does RTC work in Normal mode.
And as i 'm setting my time with mktime i'm realising that my rtc time starts getting deviated after a while.

Thanks,
Dhananjay Sutariya
by dhananjay.sutariya
Fri May 17, 2019 6:45 am
Forum: General Discussion
Topic: How to get the tickrate of RTC ?
Replies: 5
Views: 5796

Re: How to get the tickrate of RTC ?

choice ESP32_RTC_CLOCK_SOURCE prompt "RTC clock source" default ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC help Choose which clock is used as RTC clock source. - "Internal 150kHz oscillator" option provides lowest deep sleep current consumption, and does not require extra external components. However frequ...
by dhananjay.sutariya
Fri May 17, 2019 6:32 am
Forum: General Discussion
Topic: How to get the tickrate of RTC ?
Replies: 5
Views: 5796

Re: How to get the tickrate of RTC ?

This file has a lot of information in the help sections of the menuconfig options about rtc and timekeeping which you can also view when in menuconfig https://github.com/espressif/esp-idf/blob/ad3b820e701c3ef0803b045b5a2c5ef19630fb0b/components/esp32/Kconfig Hi wifive, I' afraid that i still cant g...
by dhananjay.sutariya
Thu May 16, 2019 11:39 am
Forum: General Discussion
Topic: How to get the tickrate of RTC ?
Replies: 5
Views: 5796

How to get the tickrate of RTC ?

Hi all, As i can figure out from make menuconfig that tick rate of ESP is 10 ms .How ever are there any internal RTC api's that give me the tick rate of RTC as i understand that RTC is working on different clock then ESP does. Also, what does "Number of cycles for RTC_SLOW_CLK" Calibration signify? ...
by dhananjay.sutariya
Tue May 07, 2019 12:02 pm
Forum: ESP-IDF
Topic: How to know amount of Binary image size that is running?
Replies: 6
Views: 9839

Re: How to know amount of Binary image size that is running?

It does seem to be possible. Try this: (it's also used in there to calculate hashes of the current program, which is a good example usage) https://github.com/espressif/arduino-esp32/blob/e602145c2b822a6d9288ae31c0d9ca8a7ee097d1/cores/esp32/Esp.cpp#L151 Looks like the real magic happens here, for in...
by dhananjay.sutariya
Tue May 07, 2019 10:59 am
Forum: ESP-IDF
Topic: How to know amount of Binary image size that is running?
Replies: 6
Views: 9839

Re: How to know amount of Binary image size that is running?

Ah, so you want to figure out the size of you firmware at runtime? It may be possible, but I'm not sure what the use case of that would be since you know it at compile time... You can read out the contents of a partition (though the factory partition may be protected in some way so you can't corrup...
by dhananjay.sutariya
Wed May 01, 2019 4:57 am
Forum: ESP-IDF
Topic: How to know amount of Binary image size that is running?
Replies: 6
Views: 9839

Re: How to know amount of Binary image size that is running?

Hi eagi,
Thanks for the response. However are there any api's that do the same?
by dhananjay.sutariya
Tue Apr 30, 2019 2:57 pm
Forum: ESP-IDF
Topic: How to know amount of Binary image size that is running?
Replies: 6
Views: 9839

How to know amount of Binary image size that is running?

Hi everyone,
is there any API to know the size of my firmware size .Matter of fact is there any api to know the amount of portion written in a given partition.

Regards,
Dhananjay Sutariya