support

Forum Replies Created

Viewing 15 posts - 5,731 through 5,745 (of 7,857 total)
  • Author
    Posts
  • in reply to: Linux core dump analysis using Visual GDB #10108
    support
    Keymaster

    Hi,

    You can do that with the latest VisualGDB 5.2, but you would need a cross-gdb for that (you can use one of the versions shipped with our toolchains). Simply check the “Use a cross-compiler on the Windows machine” checkbox and specify the path to your gdb executable.

    in reply to: Qt Designer #10107
    support
    Keymaster

    Hi,

    The Qt Designer does not generate the ui_MainWindow.h file. The file should be generated on the Linux machine during compilation and then downloaded back to the Windows side by VisualGDB.

    Can you confirm that the ui_MainWindow.h on the Linux machine is still not regenerated?

    in reply to: Execute bash shell script #10106
    support
    Keymaster

    Hi,

    This looks like a bug. Could you let us know where do you edit that custom action? Is it a part of the custom pre-build/pre-debug actions or something else?

    support
    Keymaster

    Hi,

    You can do it via VisualGDB Project Properties -> Debug Settings -> Program Arguments.

    in reply to: Not possible to "source" bash script #10104
    support
    Keymaster

    Hi,

    This is by design. Each command is started in a separate SSH channel, so the previous commands won’t affect the next ones. This is by design as otherwise unforeseen side effects from some commands executed early could cause very hard-to-diagnose bugs later.

    in reply to: STM32F746 gears.cpp won't build #10102
    support
    Keymaster

    Hi,

    Sorry about that. The STM32 code indeed changes over time and while we automatically test the samples included with VisualGDB, the code in the tutorials and on the forum is not updated that frequently.

    We have fixed the gears.cpp file, so you can download the newer version via the old link or simply add “#include <vector>” to the beginning of the file.

    Please note that you will also need to enable the “provide default stubs for system calls” in VisualGDB Project Properties and follow the instructions in the tutorial to add the gear icon as a resource.

    in reply to: Where to find ESP8266 xtensa-lx 106-elf for GDB stub? #10080
    support
    Keymaster

    Hi,

    The link you mentioned is the correct one. Perhaps the download was corrupt? Please let us know which VisualGDB version you are using and attach a screenshot of the toolchain selection page so that we could help you understand what’s wrong.

    in reply to: ESP32 update problems #10077
    support
    Keymaster

    Hi,

    Thanks for the detailed reply, this explains where the problem happens.

    Looks like the code responsible for erasing the FLASH memory does not work properly. Could you confirm that he same happens with a basic “LEDBlink” application that is artificially made larger by adding code like this:

    const char __attribute((section(".rodata"))) bigblock[1024 * 1024] = { 1, };
        
    void app_main()
    {
        volatile int x = bigblock[0];
    }
    in reply to: Altera Bus Blaster to program ESP8266? #10076
    support
    Keymaster

    Hi,

    Sorry about the confusion. The tutorial mentions that Olimex ARM-USB-OCD-H is not supported by the Xtens JTAG software that is deprecated in favor of OpenOCD. If you are using OpenOCD (see the link from the original tutorial), you can use it. We have explicitly tested it with ARM-USB-OCD-H and have feedback from other users that the Tiny version works as well.

    Hence we would recommend using ARM-USB-OCD-H, although the Tiny version is most likely OK as well.

    in reply to: Altera Bus Blaster to program ESP8266? #10074
    support
    Keymaster

    Hi,

    We have never tested OpenOCD with any of those, so their support may be outdated or they may not be compatible with ESP8266. We would recommend trying it with Olimex ARM-USB-OCD-H; it is fairly inexpensive and works very well.

    in reply to: Support of MSP430 FR6989 ? #10070
    support
    Keymaster

    Hi,

    Please try downloading the repackaged TI toolchain from http://gnutoolchains.com/msp430/

    It contains support for many new devices including MSP430FR6989.

    support
    Keymaster

    Hi,

    Sorry, this looks like something too specific and very error-prone, so we won’t add any special GUI for that. You can easily do it though by clicking “copy linker script” on the Makefile Settings (or MSBuild Settings) page of VisualGDB Project Properties and editing the copied file via Visual Studio.

    in reply to: Qt Designer #10063
    support
    Keymaster

    Hi,

    OK, then please try modifying the .ui file and build the project. Do you see the “uic’ing <file name>” line? If not, please post the full paths to the .pro file and the .ui file here along with your FORMS = … line from the .pro file so that we could double-check those.

    in reply to: Stack pointer STM32F411VE #10062
    support
    Keymaster

    Hi,

    Thanks for confirming this. In this case the best solution is indeed to ensure that the manual stack pointer assignment in the startup file gets compiled.

    support
    Keymaster

    Hi,

    You can already customize that via the External Memories page (requires custom edition).

    Please refer to this tutorial for details: http://visualgdb.com/tutorials/arm/memories/

Viewing 15 posts - 5,731 through 5,745 (of 7,857 total)