Search found 643 matches

by mzimmers
Fri Jul 29, 2022 6:21 pm
Forum: IDEs for ESP-IDF
Topic: VS Code "go to definition" includes IDF
Replies: 3
Views: 3180

Re: VS Code "go to definition" includes IDF

Thanks, bignacio. Does the file compile_commands.json have to reside in the build directory? I'd like it to be a bit more permanent.
by mzimmers
Tue Jul 12, 2022 5:39 pm
Forum: IDEs for ESP-IDF
Topic: VS Code "go to definition" includes IDF
Replies: 3
Views: 3180

VS Code "go to definition" includes IDF

Hi all -

Is there a way to get the "go to definition" command to exclude the IDF components? On my system, if my application uses a symbol name that is also found in the IDF, it finds those instead of the one in my own code.

Thanks...
by mzimmers
Thu Jun 23, 2022 11:24 pm
Forum: IDEs for ESP-IDF
Topic: VS Code: addresses for flash command?
Replies: 0
Views: 1586

VS Code: addresses for flash command?

Hi all - I'm using VS Code and the extension, and mostly things are working well. When I flash, I get a message like this: Auto-detected Flash size: 8MB Flash will be erased from 0x00080000 to 0x0014ffff... Flash will be erased from 0x00001000 to 0x00007fff... Flash will be erased from 0x00009000 to...
by mzimmers
Fri May 13, 2022 2:42 pm
Forum: IDEs for ESP-IDF
Topic: returning to ESP32-land; encountering build errors
Replies: 1
Views: 1986

Re: returning to ESP32-land; encountering build errors

BTT: anyone? Thanks... EDIT: This is my current build error: [0/1] Re-running CMake... FAILED: build.ninja C:\.espressif\tools\xtensa-esp32-elf\esp-2021r2-patch3-8.4.0\xtensa-esp32-elf\bin\tools\cmake\3.20.3\bin\cmake.exe --regenerate-during-build -SC:\Users\Michael.Zimmers\GitHub\iQPump-ESP32\fw -B...
by mzimmers
Fri May 13, 2022 2:41 pm
Forum: ESP-IDF
Topic: installing without admin elevation (Windows)
Replies: 0
Views: 796

installing without admin elevation (Windows)

Hi all - I'm trying to install the IDF using the Windows installer. I don't have admin privilege on my system, and even if I select an installation folder under my home directory, I get the prompt asking for admin login. Is there a way around this? My long-term intention is to use VS Code, but I cou...
by mzimmers
Wed May 11, 2022 3:30 pm
Forum: IDEs for ESP-IDF
Topic: returning to ESP32-land; encountering build errors
Replies: 1
Views: 1986

returning to ESP32-land; encountering build errors

Hi all - After a several month hiatus, I'm back on an ESP32-based project. We're using VS Code, which I installed along with the ESP extension. I set up the IDF using the "EXPRESS" option, and it appeared to work correctly. But when I try to build, I almost immediately get the "Something went wrong....
by mzimmers
Wed Jan 12, 2022 6:36 pm
Forum: ESP-IDF
Topic: Turn OFF WiFi on ESP32 with esp-idf
Replies: 4
Views: 34268

Re: Turn OFF WiFi on ESP32 with esp-idf

Applications start up without automatically starting WiFi. If you don't want it, just don't start it.
by mzimmers
Tue Jan 11, 2022 7:49 pm
Forum: ESP-IDF
Topic: How to resolve/suppress error for "static declaration follows non-static declaration" in c ?
Replies: 2
Views: 5834

Re: How to resolve/suppress error for "static declaration follows non-static declaration" in c ?

If "table" is defined outside of a function, you should be able to remove the "static" keyword from the definition.
by mzimmers
Wed Jan 05, 2022 5:44 pm
Forum: IDEs for ESP-IDF
Topic: progress on VS Code debugger
Replies: 8
Views: 14829

Re: progress on VS Code debugger

Hi rsimpsonbusa - It looks like you've gotten a little further than I have. I'm trying to use the ESP-IDF Debug Adapter, so the entries in our launch.json files aren't going to completely correspond. You might be right about the cabling, but it seems straightforward. I'm connecting the ESP-Prog to m...
by mzimmers
Wed Jan 05, 2022 3:20 pm
Forum: IDEs for ESP-IDF
Topic: progress on VS Code debugger
Replies: 8
Views: 14829

Re: progress on VS Code debugger

Thanks, Sprite. I don't see a speed option for the launch.json file; do I have to change the file in my toolchain (or make a copy), or is there another way to make this change? EDIT: I created a new file, esp32_devkitj_v1-slow.cfg, with the entry: adapter_khz 100 and put that in my settings.json fil...