Forum Replies Created
-
AuthorPosts
-
support
KeymasterHi,
Sorry, translating our GUI to multiple languages would drive the VisualGDB price sky high, so we have to stick with English-only interface.
April 27, 2017 at 17:31 in reply to: High resolution DPI 250% incompatible with UI compression #11086support
KeymasterWe are gradually switching the GUI over. Each new release has a few more dialogs and settings pages converted, so it gets better each time you update.
support
KeymasterHi,
Thanks, the session does not look out of the ordinary indeed. One last advice would be to try setting Advanced GDB Settings -> Startup and Exit -> When the debug session is ending -> Explicitly kill the process. This should force gdb to explicitly terminate the target process when exiting.
support
KeymasterHi,
The custom post-debug steps are only supported on the Custom edition of VisualGDB and higher (see the feature matrix). If you have purchased a lower edition, this feature would not be available.
You can always upgrade your edition at https://sysprogs.com/splm/mykey.
Another alternative would be to try understanding why gdb is not terminated properly. Please try enabling GDB logging via VisualGDB Project Properties and check the last gdb command that gets executed before GDB hangs.
support
KeymasterHi,
Thanks for reporting this, we have fixed the missing “additional linker inputs” handling in this build: http://sysprogs.com/files/tmp/VisualGDB-5.2.16.1483.msi
The behavior with additional linker inputs is by design as both library names and additional linker inputs are saved in the same field in the QT project file. As names with spaces are generally not supported very well by GNU tools, VisualGDB does not support them either (you can still use them by editing the Qt project file manually, but VisualGDB GUI won’t show it correctly).
support
KeymasterHi,
Please contact our support with the details of your license key and we will help you resolve this.
support
KeymasterHi,
No problem, this should help us diagnose it quickly. Please contact us via the support form on our website to arrange the shipping.
support
KeymasterHi,
It looks like a bug introduced by the MinGW path translation. If you have the full msys, setting USE_DEL_TO_CLEAN to 0 should be the easiest fix.
support
KeymasterHi,
You can check for __GNUC__ or other GCC macros.
support
KeymasterHi,
Our support for AVR devices is somewhat basic as they are much less popular than ARM-based devices like STM32.
VisualGDB actually relies on an open-source tool called AVaRICE in order to handle the low-level communications. According to this thread, AVaRICE should be able to support Atmel ICE, although we have not tested it explicitly and cannot guarantee it. We would recommend experimenting with the AVaRICE command line to see if it gets to work.
If you encounter any problems, feel free to post the details here and we will try to help, but unfortunately we cannot give a 100% guarantee that Atmel ICE will work.
support
KeymasterHi,
Looks like your toolchain might be corrupt. Please try locating the libstdc++.so file mentioned in the error message and check its contents. If it looks like a text file containing the path to another file, it could be an incorrectly unpacked symlink. In this case please try copying the target file over that libstdc++.so file.
support
KeymasterHi,
This could happen if the file is not explicitly included in your VC++ project. Could you double-check that it’s explicitly there? If not, would you be able to reproduce the problem on a basic “hello, world” application and send it to us so that we could investigate this further?
support
KeymasterHi,
The SSH host aliases are available starting from the Custom edition (see the feature matrix). If you are using a lower edition, you can achieve the same effect by defining Windows environment variables (e.g. DEPLOYHOST=linuxbox) and manually editing the .vgdbsettings files to use those environment variables (e.g. replace linuxbox with $(DEPLOYHOST)). Note that you will need to restart Visual Studio after you update the Windows environment variables.
support
KeymasterHi,
Sorry, this is sort of a rare case, so we won’t be supporting this out-of-the-box. BTW, for new projects we recommend using MSBuild. It actually works very fast (when building both on Windows and Linux) and is much better integrated with VS (VisualGDB has 100% reliable access to all build settings and does not have to guess them).
support
KeymasterHi,
Sorry, not fully sure we got you correctly. In the previous post you mentioned the following instruction:
0x000001f0 strb r7, [r0, r2]
But in your last post the instruction at that address looks different:
0x1f0 <SystemInit>: push {r7, lr}
Could you please double-check what is the actual instruction programmed at address 0x1f0 in the FLASH (if you run “x/10i” before connecting to the target, gdb will read the code from the ELF file and not from the actual FLASH memory)?
-
AuthorPosts