Questions tagged [visualgdb]

38 questions
5
votes
2 answers

Visual Studio Intellisense suggestions disappears immediately after coming up

I am using Visual Studio Community and Visual GDB to code and debug STM32 projects. The problem: When I type something that is known to Intellisense, (path, variable or anything really), the suggestions come up briefly and then immediately disappear…
Misha
  • 556
  • 1
  • 8
  • 25
3
votes
1 answer

Error connecting DP: cannot read IDR-No connection could be made because target machine actively refused it

I could program and debug this project for the first time. But the problem is that I can't reprogram or debug it again. There is no bootloader on the chip. The only way to communicate with this chip is SWD. As a debugger, I am using Atmel ice. The…
Mary
  • 71
  • 1
  • 7
3
votes
1 answer

how to save "set solib-search-path"

I wonder linux gdb debugging. I have 1 execute file, 1 core dump file. so, I opened it in linux like this, gdb exefilename -c exefuilename.core but, I only show error message. warning: Could not load shared library symbols for 44 libraries, e.g.…
user3416447
  • 119
  • 1
  • 2
  • 9
2
votes
0 answers

Using Visual Studio to develop MSP430 firmware

Hi am migrating a Code Composer Studio project to Visual Studio 2017 (Visual GDB) I created a new sample project as explained here for MCU: MSP430 FR5729 Then included(copied) all .c and .h files to the Source files folder in my solution…
HaBo
  • 13,999
  • 36
  • 114
  • 206
2
votes
1 answer

TRACKER : error TRK0005: Failed to locate: "xsd.exe". The system cannot find the file specified

In the intent of converting a Microsoft Visual Studio 2015 (VS2015) project with VisualGDB to VS2017 without VisualGDB, I get the following error: Notes: VS2017 includes a native feature for remote build/debugging. TRACKER : error TRK0005: Failed…
Adrian Maire
  • 14,354
  • 9
  • 45
  • 85
2
votes
2 answers

What is the difference between gnustl_shared and gnustl_static in Android NDK library .a file?

I want to create android library using c++ stl. my build tools are visual studio 2015, Visual GDB. source code is .cpp #include #include "AndroidProject2.h" #include void foo() { std::vector aaa; aaa.push_back(1);…
user3416447
  • 119
  • 1
  • 2
  • 9
1
vote
0 answers

Compile succeeds but VS shows red-squiglies. Function pointers with different parameters in C

I am writing 'C' using Visual Studio 2019 community with VisualGDB for an embedded ARM based project (STM32). VisualGDB shows its error reporting uses the default gnu11 standard. EDIT: I have made this code a little more complete: typedef…
Ed Landau
  • 966
  • 2
  • 11
  • 24
1
vote
0 answers

How to install ST-Link driver onto STM32 Discovery Board for Visual GDB Debugging

I am attempting to program a STM32VLDiscovery Board, using Visual Studio 2019, Visual GDB and STM32CubeMX. When I connect the board to the machine, it appears as 'USB Mass Storage Device'. I am using a Windows 10 VM. The program builds fine, but…
Smoggie Tom
  • 306
  • 4
  • 12
1
vote
1 answer

CMake Error: Problem with archive_write_finish_entry(): Can't restore time

I am getting this problem when trying to cross compile OpenCV with VisualGDB following this tutorial https://visualgdb.com/tutorials/raspberry/opencv/build/ I also get the same error when typing tar -xf b624b995ec9c439cbc2e9e6ee940d3a2-v0.1.1f.zip…
Mi Po
  • 1,123
  • 2
  • 12
  • 21
1
vote
1 answer

problem with text color in Visual studio + VisualGDB

each time I open a visualGDB(5.4 r8) embedded project in visual studio 2019, the text color changes like the image below. this problem only exists for VisualGDB projects this problem didn't exist earlier for VisualGDB on Visual studio 2017 I can…
1
vote
0 answers

Building Linux C++ project imported to Visual Studio 2015 by VisualGDB

I have a small Linux project which has a OpenCV as its dependency. In Linux (Ubuntu: running in VMware), I’ve already compiled and built it by using bash script without any error. In order to develop it more efficiently, I’m going to import it into…
Zho8789
  • 11
  • 2
1
vote
0 answers

std::future in c++ with raspberry e sysroot

I'm writing a sample code to learn the asynchronos function with std::async. My code it's very simple: #include #include void error(char *msg) { std::cout << msg; } int main(int argc, char * argv[]) { std::future
1
vote
2 answers

VisualGDB doesnt create elf files

after buying the full version of VisualGDB i cannot find .elf files in new projects, and the old projects created with the TrialVersion wont open (unknown toolchain error). I need the .elf file for STMStudio, becouse the live variables are not so…
Michal D
  • 109
  • 15
0
votes
0 answers

In VisualGDB using the managed component LVGL, I cannot make unless my computer is connected to the internet

In VisualGDB using the managed component LVGL, I cannot make unless my computer is connected to the internet. I do not want any of my code to change based on outside dependencies, so my code must be able to compile completely offline. If the…
Doug Sisco
  • 121
  • 9
0
votes
0 answers

GDB debugging error while using a third-party lib LVGL on STM32

I am using a third-party graphic lib names LVGL on stm32,but i met a problem while debugging and it can run with no errors and download into the board successfully.I debug the problem by visualGDB on Visual Studio Community 2022.The problem appeals…
1
2 3