Forum Replies Created
-
AuthorPosts
-
support
KeymasterHi,
Thanks for your feedback. We are planning to upgrade our IntelliSense engine to the latest Clang version as a part of the v5.4 release cycle (expect this to be available in the next 1-2 months). Feel free to follow us on twitter to get notified once the build with the new Clang is ready.
support
KeymasterHi,
This could be a wiring issue, an optimization bug (that should not happen when using out-of-the-box ESP-IDF) or a FLASH programming issue. First of all, please try simply pressing F5 to continue from the stop. Does the program resume as normal?
If not, please try creating and programming a basic “LEDBlink” project and then restart the board manually. Does the LED blink? If not, please follow this tutorial. If yes, please try disabling all breakpoints and try debugging it again.
support
KeymasterHi,
Not sure what toolchain you are downloading, but our ESP32 toolchain compatible with VisualGDB can be downloaded here: http://gnutoolchains.com/esp32/
support
KeymasterHi,
Yes, the toolchain can be installed in any location (although the path should not contain spaces).
You don’t need to re-download the toolchain. Once it is installed by running the .exe file, VisualGDB will automatically find it (you will need to restart Visual Studio if you installed the toolchain while it was running).
support
KeymasterHi,
No problem, please contact our support via the support form with your key details and we will review your case and provide further instructions.
support
KeymasterHi,
Sorry, this is by design. As our license price includes technical support and we are not able to check who is physically using each installation, we have to limit the amount of parallel activations to the amount of purchased seats.
We offer quantity discounts starting from 10 seats, however otherwise each extra seat will cost the regular license price. We understand that this might be annoying, however otherwise we would simply not be able to provide technical support to all our customers as the amount of support required by large teams would never be covered by a single license cost.
support
KeymasterHi,
Good to know it works. The recommended way to create Qt-based VisualGDB projects is still using the VisualGDB project wizard. This will setup the necessary file transfer rules, prepare the toolchain if necessary, and will ensure that various cross-platform build tools will work together properly.
support
KeymasterHi,
Thanks for your input. We have added it to the backlog and will try to address it in one of the next major releases, although as this is something very specific and low-impact, the relative priority of this feature is currently low.
support
KeymasterHi,
Sorry, as this case is very specific, we don’t have a tutorial fully covering it. Our best suggestion would be to look through OpenMP documentation and tutorials on their site to get a basic overview of it. That said, we will be happy to help you locate the relevant VisualGDB settings if you are experiencing troubles getting your project to work with VisualGDB.
support
KeymasterHi,
This could happen if we missed some scenario. Please let us know what exactly do you mean by “paths not recognized”. If you get a specific error message while trying to build or debug a project, please ensure you quote the entire error text and also let us know what exactly triggers it.
support
KeymasterHi,
Please try reproducing it on a newly created project. You might have accidentally overridden some settings that control temporary breaks for setting breakpoints. If the problem does not reappear on a newly created project, please compare the .vgdbsettings files of both projects.
support
KeymasterHi,
Please use the Qt Designer tool (or Qt plugin for VS). It will provide basic functionality for editing the UI files, although it is not as comprehensive as the WinForms/WPF editors.
support
KeymasterHi,
Thanks for the suggestion. As this is a fairly low-impact issue, we don’t want to add another dependency to a 3rd-party library like libmagic, however you could work around it by running it on your side and generating a list of exceptions to include/exclude.
To facilitate this, we have added support for the exclusion syntax to this build: http://sysprogs.com/files/tmp/VisualGDB-5.4.1.2187.msi
You can now use the “-ext1;-ext2;*” syntax to treat all file extensions except the explicitly entered exceptions as executables.
support
KeymasterHi,
No problem. Please try this build: http://sysprogs.com/files/tmp/VisualGDB-5.4.1.2187.msi
VisualGDB will show the link to a new version once it becomes a stable release. Currently VisualGDB 5.4 is a preview build (i.e. introduces new features, but might be unstable), so we intentionally don’t show it in the update GUI to avoid breaking users who prefer waiting for the stable release.
support
KeymasterHi,
The InitializeFastSemihosting() function is normally invoked at the start of your debug session so that VisualGDB will start reading the output from the fast semihosting mechanism. Normally VisualGDB should handle this breakpoint internally and not show the “Sigtrap” message.
If you get this breakpoint in the middle of the debugging session, most likely your program corrupts the memory and/or restarts unexpectedly. If it only happens during session initialization, please try comparing the full gdb logs for the normal session and the crashed session and check for any obvious differences (e.g. gdb errors). If you are not sure, feel free to post both logs here and we can take a look.
-
AuthorPosts