Search found 643 matches

by mzimmers
Wed Jan 05, 2022 3:24 am
Forum: IDEs for ESP-IDF
Topic: progress on VS Code debugger
Replies: 8
Views: 14635

Re: progress on VS Code debugger

Hi Sprite - Thanks for the reply. So, how does one go about chasing this down? I don't believe I'm re-assigning any relevant GPIO pins. Where do I review the speed settings, etc. that you listed? Here's an excerpt from my settings.json file: "idf.adapterTargetName": "esp32", "idf.portWin": "COM8", "...
by mzimmers
Tue Jan 04, 2022 8:07 pm
Forum: IDEs for ESP-IDF
Topic: progress on VS Code debugger
Replies: 8
Views: 14635

progress on VS Code debugger

Hi all - I've made some progress getting the debugger working within VS Code. I got it working on a development board, and am now trying to get it working with our own board. - the module is the ESP32-WROOM-32U. - the debugger is the ESP PROG. - I'm not (yet) trying to use the ESP PROG to program th...
by mzimmers
Mon Jan 03, 2022 11:10 pm
Forum: IDEs for ESP-IDF
Topic: getting the debugger working in VS Code
Replies: 9
Views: 29334

Re: getting the debugger working in VS Code

Hi ProtonBoarder - That is indeed a good video -- it does answer a few questions. I'm trying to use his automated preRun task: { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "preRun", "type": "she...
by mzimmers
Mon Jan 03, 2022 9:48 pm
Forum: ESP-IDF
Topic: (solved) trying to debug, getting error
Replies: 4
Views: 6907

Re: (solved) trying to debug, getting error

I see. Thanks again, Sprite.
by mzimmers
Sun Jan 02, 2022 11:22 pm
Forum: ESP-IDF
Topic: (solved) trying to debug, getting error
Replies: 4
Views: 6907

Re: trying to debug, getting error

Hi Sprite - Yeah, that was the problem, I think. I get this now: C:\Users\mzimmers\esp_projects\blink>xtensa-esp32-elf-gdb -x gdbinit build/blink.elf GNU gdb (crosstool-NG esp-2021r1) 8.1.0.20180627-git Copyright (C) 2018 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <htt...
by mzimmers
Thu Dec 30, 2021 10:30 pm
Forum: Hardware
Topic: ESP-WROVER-KIT factory firmware
Replies: 10
Views: 26191

Re: ESP-WROVER-KIT factory firmware

I realize this thread is old, but...I believe what you're looking for can be found in:
{esp-idf}\examples\peripherals\spi_master\lcd

I loaded it and got back the fancy picture on the LCD.

EDIT: I just realized that this isn't exactly the same code; it doesn't blink the RGB LED.
by mzimmers
Thu Dec 30, 2021 8:53 pm
Forum: ESP-IDF
Topic: (solved) trying to debug, getting error
Replies: 4
Views: 6907

(solved) trying to debug, getting error

"No connection could be made because the target machine actively refused it." I'm trying to to get the command line debugger working (since I still can't get the VS Code version to work). I thought I followed the instructions; here's the complete output: C:\Users\mzimmers\esp_projects\blink>xtensa-e...
by mzimmers
Wed Dec 22, 2021 7:06 pm
Forum: ESP-IDF
Topic: getting warning from wifi
Replies: 0
Views: 3378

getting warning from wifi

Hi all - My app seems to be running fine, but I do get a few of these warnings in the first few seconds of startup: W (5680) wifi:<ba-add>idx:2 (ifx:0, 28:bd:89:ca:d0:ef), tid:1, ssn:0, winSize:64 Can someone tell me what this means, whether I should be concerned, and what to do about it? Thanks...
by mzimmers
Wed Dec 01, 2021 1:33 am
Forum: ESP-IDF
Topic: how to populate uri field in httpd_req_t?
Replies: 0
Views: 2362

how to populate uri field in httpd_req_t?

Hi all - I'm using the httpd_req_t struct. I need to edit the uri field (to decode characters from the %NN formatting), but it's a const. I've looked at creating a new struct, and initializing it like this: esp_err_t wildcard_handler(httpd_req_t *req) { const struct fluidra_http_page_t *page = ap_we...
by mzimmers
Thu Nov 25, 2021 5:28 pm
Forum: IDEs for ESP-IDF
Topic: VS: editor disagrees with build results
Replies: 6
Views: 17630

Re: VS: editor disagrees with build results

Hi boarchuz - My CMakeLists.txt file: idf_component_register( ... REQUIRES app_update bootloader_support driver esp_event esp_http_server esp_wifi freertos hal lwip nvs_flash spi_flash ) And in a source file: undefined.PNG The squiggles indicate that the symbol is undefined. The project does build, ...