Search found 41 matches

by dhananjay.sutariya
Wed Aug 28, 2019 10:45 am
Forum: ESP-IDF
Topic: How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?
Replies: 3
Views: 4072

Re: How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?

Hi,
The server started working all on its own.

Thanks,
Dhananjay Sutariya
by dhananjay.sutariya
Wed Aug 28, 2019 5:34 am
Forum: ESP-IDF
Topic: How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?
Replies: 3
Views: 4072

Re: How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?

A php file is a file that gets executed on the server: if you wget it, you capture the *output* of the file, not the php file itself. It's like comparing a game with a video of a game: while they look the same, the logic that makes it work is gone. Unless you can get the source for that php file so...
by dhananjay.sutariya
Tue Aug 27, 2019 2:04 pm
Forum: ESP-IDF
Topic: How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?
Replies: 3
Views: 4072

How to generate client certificate using https://test.mosquitto.org/ssl/index.php ?

Hi all, I'm rather new to .php scripts so i can hardly understand it. And im having difficulties generating a certificate using https://test.mosquitto.org/ssl/index.php this link because all i get is a index.php file. I have already installed the apache-v2 utility and used wget command followed by t...
by dhananjay.sutariya
Mon Aug 26, 2019 9:35 am
Forum: ESP-IDF
Topic: How to Configure ssl_manual_auth MQTT example for secure communication with test.mozilla.org?
Replies: 0
Views: 2014

How to Configure ssl_manual_auth MQTT example for secure communication with test.mozilla.org?

Hi all, I am using the latest SDK.I've flashed the ssl_manual_auth standard example for secure MQTT connection. After performing the steps mentioned in README file i get stuck at this point : Paste the generated CSR in the [Mosquitto test certificate signer](https://test.mosquitto.org/ssl/index.php)...
by dhananjay.sutariya
Tue Jun 04, 2019 9:05 am
Forum: General Discussion
Topic: Makefile Modification to upload application using openocd command.
Replies: 0
Views: 1904

Makefile Modification to upload application using openocd command.

Hi all, I want to make a provision in my project.mk file such that when i enter a command For ex: make jnfw_flash . In the background my openocd utility runs which is : bin/openocd -s share/openocd/scripts -f interface/ftdi/esp32_devkitj_v1.cfg -f board/esp-wroom-32.cfg -c "program_esp32 filename.bi...
by dhananjay.sutariya
Fri May 24, 2019 5:36 am
Forum: ESP-IDF
Topic: ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.
Replies: 7
Views: 8912

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

In particular, show down your adapter. " adapter speed: 20000 kHz" means it's running at 20MHz now. Hi ESP_sprite, My device's hardware confiuration have been met . Thanks, yet i'm having some issue here: xtensa-esp32-elf-gdb -x gdbinit build/blink.elf GNU gdb (crosstool-NG crosstool-ng-1.22.0-80-g...
by dhananjay.sutariya
Wed May 22, 2019 1:01 pm
Forum: ESP-IDF
Topic: ESP32 JTAG debugging is not functioning properly, OpenOCD is giving these error.
Replies: 7
Views: 8912

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

Then I suggest you check your hardware, as the OpenOCD output suggests :) Hi ESP_Sprite, I have managed to check with my hardware pins allthough i'm getting these errors after that: bin/openocd -s share/openocd/scripts -f interface/ftdi/esp32_devkitj_v1.cfg -f board/esp-wroom-32.cfg Open On-Chip De...
by dhananjay.sutariya
Tue May 21, 2019 12:06 pm
Forum: ESP-IDF
Topic: Internal RTC Drifting -8 Minutes in 15 Hours.
Replies: 5
Views: 7420

Re: Internal RTC Drifting -8 Minutes in 15 Hours.

Note that without an external 32KHz crystal, you're still going to have a fair amount of drift; it's quite inevitable as on-chip oscillators never will get the precision an external crystal can have. Hi ESP_SPRITE, Can i connect this external pin to any other pin or is it mandatory to connect it to...
by dhananjay.sutariya
Tue May 21, 2019 8:10 am
Forum: ESP-IDF
Topic: Internal RTC Drifting -8 Minutes in 15 Hours.
Replies: 5
Views: 7420

Re: Internal RTC Drifting -8 Minutes in 15 Hours.

Hi, You can try to change in menuconfig the "RTC clock source" to from "Internal 150kHz oscillator" to "Internal 8.5MHz oscillator divided by 256". The accuracy should improve. The online help in menuconfig provides more information: - "Internal 8.5MHz oscillator divided by 256" option results in h...
by dhananjay.sutariya
Tue May 21, 2019 6:53 am
Forum: ESP-IDF
Topic: Internal RTC Drifting -8 Minutes in 15 Hours.
Replies: 5
Views: 7420

Internal RTC Drifting -8 Minutes in 15 Hours.

Hi all, I'm using this below mentioned code : int rtc_set_time(rtc_time_date_t ip) { time_t now; struct tm t; struct timeval val = {0,0}; if(ip.year<=2019&& ip.year>1970) t.tm_year=ip.year-1900; else return 0; if(ip.min<60 && ip.min>=0) t.tm_min=ip.min; else return 0; if(ip.mon>0 && ip.mon<13) t.tm_...