Search found 143 matches

by gunar.kroeger
Thu May 16, 2019 4:39 pm
Forum: General Discussion
Topic: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"
Replies: 19
Views: 33864

Re: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"

Hi Paul,

I unfortunately your solution also did not work for me ):
by gunar.kroeger
Tue May 14, 2019 5:19 pm
Forum: General Discussion
Topic: Compression using miniz
Replies: 5
Views: 14863

Re: Compression using miniz

I have miniz working as a component. Works great. Had to change some defines to reduce RAM usage. if(!mz_zip_writer_init_file(&zip_archive, tempNameWithDir, 0)) { ESP_LOGE(TAG, "Error while initializing ZIP file archive\n"); return false; } mz_bool rc; ESP_LOGD(TAG, "mz_zip_writer_add_file"); ESP_LO...
by gunar.kroeger
Tue May 14, 2019 12:47 pm
Forum: General Discussion
Topic: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"
Replies: 19
Views: 33864

Re: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"

I'm still getting errors in eclipse with windows. Mostly with defines like ESP_LOGI, ESP_SPP_MODE_CB, CAN_MODE_NORMAL etc But builds finish successfully. Same problem occurs in more projects, and more computers. Sometimes the errors disappear, but eventually reappear indexErrors.PNG Output Parser.PN...
by gunar.kroeger
Thu May 02, 2019 1:38 pm
Forum: General Discussion
Topic: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"
Replies: 19
Views: 33864

Re: Eclipse still showing "unresolved inclusion" and "Symbol couldn't be resolved"

I'm also not having luck with this on eclipse Windows... Sometimes the errors disappear but when I have to change branches, eclipse starts to scream again It's really frustrating having to work with all your code marked with red underlines I saw some people abandoning eclipse and moving to VS, but a...
by gunar.kroeger
Tue Apr 30, 2019 2:08 pm
Forum: General Discussion
Topic: App Version in DROM management
Replies: 0
Views: 1712

App Version in DROM management

I have found that there is a location for storing app version inside an esp-idf structure: https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/system/system.html#app-version Is there a way to autoincrement the version on each build with eclipse, windows? I got it to work with some Ma...
by gunar.kroeger
Mon Apr 08, 2019 3:20 pm
Forum: General Discussion
Topic: Get SD card free space not updating?
Replies: 2
Views: 4862

Re: Get SD card free space not updating?

pilidfast-mail wrote:
Sat Apr 06, 2019 8:09 am
That's the software bug, nothing to do with hardware. Report the issue, next update might (will) solve it.
https://github.com/espressif/esp-idf/issues/3278
by gunar.kroeger
Fri Mar 29, 2019 7:43 pm
Forum: General Discussion
Topic: Get SD card free space not updating?
Replies: 2
Views: 4862

Get SD card free space not updating?

I am able to read SD card free space by using this function: bool SD_getFreeSpace(uint32_t *tot, uint32_t *free) { FATFS *fs; DWORD fre_clust, fre_sect, tot_sect; /* Get volume information and free clusters of drive 0 */ if(f_getfree("0:", &fre_clust, &fs) == FR_OK) { /* Get total sectors and free s...
by gunar.kroeger
Sat Mar 23, 2019 1:50 pm
Forum: General Discussion
Topic: Invalid project path on Eclipse
Replies: 5
Views: 8038

Re: Invalid project path on Eclipse

was this before same setup where your compile runs before you did the move of headers? and did the compile runs without error? yes, for both. build command = python ${IDF_PATH}/tools/windows/eclipse_make.py -j5 build directory = ${workspace_loc:/ESP32_Project}/ I changed all the backslashes to forw...
by gunar.kroeger
Fri Mar 22, 2019 8:17 pm
Forum: General Discussion
Topic: Invalid project path on Eclipse
Replies: 5
Views: 8038

Re: Invalid project path on Eclipse

Yes, I'm on windows. Project settings are equivalent to the one you posted: Capture.PNG And this is my Makefile: PROJECT_NAME := ESP32_Project include $(IDF_PATH)/make/project.mk fullflash: python ${IDF_PATH}/components/esptool_py/esptool/esptool.py --chip esp32 --port COM4 --baud 921600 --before de...