Search found 33 matches

by k.ifantidis
Tue May 25, 2021 9:18 am
Forum: ESP-IDF
Topic: cant accept path in ota example
Replies: 11
Views: 11569

Re: cant accept path in ota example

Hey sanoja22. I'm sorry for the very very late response. With "If your CA certficates are ok" i meant if have created them correctly is one thing and the other is to embed them correctly in the code. There are two ways to do this. One is like the one the example is showing and the other is to embed ...
by k.ifantidis
Mon Jul 27, 2020 1:24 pm
Forum: General Discussion
Topic: openOCD - jtag debugging - Failed to write breakpoint instruction (-4)!
Replies: 0
Views: 1952

openOCD - jtag debugging - Failed to write breakpoint instruction (-4)!

Hello there folks ! My set-up in order to program esp32 is this: -OS: windows 10 x64 -Eclipse -Esspressif's plugin -openOCD version: Tested many versions at the moment I'm using latest release (openocd-esp32-win32-0.10.0-esp32-20200709) -Module: ESP-WROOM-32D and ESP32-WROVER (kit) -Programmer/Debug...
by k.ifantidis
Thu May 21, 2020 8:38 am
Forum: ESP-IDF
Topic: Build fail - undefined reference to - eclipse + idf-eclipse-plugin
Replies: 1
Views: 2646

Re: Build fail - undefined reference to - eclipse + idf-eclipse-plugin

Hello.
Updating esp-idf in version v4.0.1 fixed the problem.
git clone -b v4.0.1 --recursive https://github.com/espressif/esp-idf.git
by k.ifantidis
Thu May 21, 2020 7:17 am
Forum: ESP-IDF
Topic: Build fail - undefined reference to - eclipse + idf-eclipse-plugin
Replies: 1
Views: 2646

Build fail - undefined reference to - eclipse + idf-eclipse-plugin

Hello there. I've recently installed eclipse and esp-idf plugin. I've compiled/flashed/debugged couple of examples successfully. But when I'm trying a project that includes wifi the ninja tool can't build the project. When I delete this command: esp_wifi_init(&cfg); everything works again. I think t...
by k.ifantidis
Mon May 04, 2020 10:29 am
Forum: General Discussion
Topic: Debugger - keep gettin
Replies: 1
Views: 2689

Re: Debugger - keep gettin

Hello mikeloh.

Can you tell us some more information about: esp-idf version, IDE, compiler, if you have any partitions etc.
Have you set the right memory location in openOCD ?? Read this post in esp-idf github repo.

Regards, Kostas.
by k.ifantidis
Wed Aug 07, 2019 7:25 am
Forum: ESP-IDF
Topic: update project to CMake build system from GNU make build system
Replies: 4
Views: 10237

Re: update project to CMake build system from GNU make build system

Hello Angus. Thank you for your response. So... If I create a component and it has wifi, OTA, nvs and FAT I have to do two things in order my new component to work. 1) Include the necessary headers of wifi, OTA, nvs and FAT in the new component's source file 2) Create the CMakeLists file that has in...
by k.ifantidis
Sat Aug 03, 2019 11:10 am
Forum: ESP-IDF
Topic: update project to CMake build system from GNU make build system
Replies: 4
Views: 10237

Re: update project to CMake build system from GNU make build system

Try without the quotes around your list I think you refer to those quotes right?? --> set(COMPONENT_SRCS "timers_v1i1.c") set(COMPONENT_ADD_INCLUDEDIRS ". include") register_component() I've removed them but I've been receiving the same error log: Checking Python dependencies... Python requirements...
by k.ifantidis
Sat Aug 03, 2019 8:44 am
Forum: ESP-IDF
Topic: update project to CMake build system from GNU make build system
Replies: 4
Views: 10237

update project to CMake build system from GNU make build system

Hello there ! I've been using ESP32-WROOM-32D module with 4MB flash and esp-idf v3.2 for the last year. I would like to update my project to cmake based build system but I can not find how to add my project's custom components in the project using CMakeLists.txt files. Before trying to update my old...
by k.ifantidis
Sat Aug 03, 2019 7:34 am
Forum: ESP-IDF
Topic: FAT failed to mount error 14
Replies: 5
Views: 9584

Re: FAT failed to mount error 14

Hello there! Thank you all about your replies and I'm sorry for the late response. I've detected the problem and it was that I had set insufficient storage size for FAT. I have read somewhere that minimum sector size for FAT is 128 - 132 sectors so minimum size is calculated like this 132*512B or 13...
by k.ifantidis
Mon Jul 01, 2019 8:59 am
Forum: ESP-IDF
Topic: FAT failed to mount error 14
Replies: 5
Views: 9584

Re: FAT failed to mount error 14

Hello there, I have esp-wroom-32d module and I'm using esp-idf v4.0-dev-837-g58df1d93b and I'm using make build system for my programs compilation. I've been using the same library in order to write some data in Flash memory without any problems. Today I've erased the flash and changed a bit my part...