support

Forum Replies Created

Viewing 15 posts - 4,141 through 4,155 (of 7,857 total)
  • Author
    Posts
  • in reply to: VisualGDB & GoogleTestFramework in Commandline #21373
    support
    Keymaster

    Hi,

    No problem, please try this build: http://sysprogs.com/files/tmp/VisualGDB-5.4.3.2349.msi

    in reply to: Missing Hardware register definition on ESP32 #21372
    support
    Keymaster

    Hi,

    No problem, this looks like our bug. Please try this build: http://sysprogs.com/files/tmp/VisualGDB-5.4.3.2349.msi

    in reply to: Feature request: integration with "Go to ALL" #21371
    support
    Keymaster

    Hi,

    We have quickly checked the internals of the Go to All mechanism and it looks it depends on some undocumented interfaces implemented by the regular Visual Studio project types. We might be able to support something similar during quick debug (by exposing a virtual pseudo-project), however we won’t be able to fit this into the upcoming v5.4, sorry.

    in reply to: Can't build Example HTTP server on ESP32 #21370
    support
    Keymaster

    Hi,

    The regular ESP32 project support (not the new advanced ESP32 IDF project wizard) is based on ESP-IDF 2.x won’t work with examples from other ESP-IDF releases. It also uses a slightly different build process than the original ESP-IDF (in order to be compatible with MSBuild), causing problems with some samples.

    This is exactly the reason we designed the new Advanced ESP-IDF Project Subsystem that works on top of ESP-IDF and is fully compatible with it. Please use the new advanced project subsystem (and the corresponding wizard) instead of the regular Embedded Project Wizard.

    in reply to: Typo in SRST debug tutorial? #21363
    support
    Keymaster

    Hi,

    Yes, any FT2232-based JTAG adapter (including Olimex ARM-USB-OCD-H) should work. For the exact pin configuration, please refer to the tutorial for the board you are using.

    in reply to: I cannot compile VisualGDB project #21361
    support
    Keymaster

    Hi,

    If you are using a custom edition, you can simply add an extra pre-build action to transfer any amount of arbitrary source directories. If you are using a lower edition, simply creating a pseudo-project to facilitate the transfer should work as well.

    Another option would be to try the Advanced CMake Project Subsystem and switch your project to CMake. CMake projects can have multiple targets (executables/libraries) inside one project sharing the same file transfer settings.

    in reply to: Feature request: integration with "Go to ALL" #21360
    support
    Keymaster

    Hi,

    Long-term we are planning to add a tool window (similar to Solution Explorer) that will let you easily browse through files seen by the gdb (with filter). However this feature will not make it into the upcoming v5.4, sorry.

    in reply to: Issue with ESP-IDF project and flash burning #21359
    support
    Keymaster

    Hi,

    Thanks for clarifying this. Please try clicking the “test connection” button in both cases, copy the OpenOCD command line shown in the test window and then compare the working command line with non-working one. Then please try running OpenOCD manually to determine a specific flag that causes the issue.

    in reply to: Typo in SRST debug tutorial? #21358
    support
    Keymaster

    Hi,

    In our experiments this worked differently with different JTAG debuggers (e.g. Segger J-Link vs Olimex), so we would advise trying both to see which one works with your device.

    in reply to: Need help importing Coocox project #21349
    support
    Keymaster

    Hi,

    No problem, we will try to explain how this works.

    Function calls like _write() are the low-level calls used by the standard library to implement basic I/O. E.g. if you call printf(), the library itself will format the text and then will call _write() to actually send out the exact string. VisualGDB projects can have one of the following implementations of those functions:

    • Regular semihosting. Selected via the first page of VisualGDB Project Properties and is slower than the advanced semihosting. The output from printf() will appear inside Visual Studio.
    • Advanced semihosting. Selected by referencing the corresponding framework via VisualGDB Project Properties -> Embedded Frameworks. Similar to the regular semihosting, but only works with VisualGDB and is much faster than the regular one.
    • Any other implementation that is built together with your code (i.e. a .c or .cpp file defining those functions). E.g. it may redirect printf() output to a UART port.

    Most likely you have imported some implementation of those functions together with your project, causing conflicts between it and the regular semihosting. To fix this, you need to ensure that only one of the options mentioned above is enabled. One way to do this is to select “none” in VisualGDB Project Properties, another way is to remove syscalls.c from the project. If it looks like syscalls.c was just copied from the standard library and doesn’t add any functionality on top of that, we would suggest removing it to reduce the codebase size. Otherwise, disabling semihosting via VisualGDB Project Properties like you did, is the right way to go.

    in reply to: VisualGDB & GoogleTestFramework in Commandline #21348
    support
    Keymaster

    Hi,

    Sorry, looks like the exception screenshot was not attached properly. Could you please click on “details” and copy the full exception text with the call stack?

    in reply to: Issue with ESP-IDF project and flash burning #21347
    support
    Keymaster

    Hi,

    If the problem only occurs on your board, but not on the reference board, it is likely caused by wiring issues (e.g. cross-talk, wrong reset connection, etc.). Generally if the problem cannot be reliably reproduced on any of the boards mentioned in our tutorials, we won’t be able to offer much help as a part of our regular product support. That said, feel free to attach the error log you are getting from OpenOCD. If this is something we have seen before, we might be able to at least suggest the direction for further investigation.

    in reply to: Formatting issue with ESP-IDF project #21346
    support
    Keymaster

     

    Hi,

    Please try changing the following option:

    Tools->Options->Text Editor->C/C++ (VisualGDB) -> Formatting -> Newline Insertion -> New functions.

    in reply to: Raspberry QT5 Gui #21343
    support
    Keymaster

    Hi,

    Sorry, we only provide support for our products on this forum. For general Qt-related questions please consider creating a thread at the Qt forum.

    in reply to: ESP8266 project convert to Standalone #21330
    support
    Keymaster

    Hi,

    Please try installing the experimental J-Link package from http://sysprogs.com/files/tmp/segger-dmsp-5.1preview1.vgdbxedp.

    You can install it into VisualGDB via Tools->VisualGDB->Manage VisualGDB Packages.

Viewing 15 posts - 4,141 through 4,155 (of 7,857 total)