Questions tagged [visualgdb]
38 questions
0
votes
1 answer
How to satisfy .Net Framework 4.0 requirement when 4.6 is already installed
I'm trying to use https://visualgdb.com/ which allows for GCC based toolchain compilation within visual studio - however, it has a hardcoded requirement for .NetFramework 4.0. I have VS Community 2017 installed on windows 10, which includes .Net 4.5…

reza
- 1,329
- 2
- 22
- 37
0
votes
0 answers
*.s files cannot be correctly assembled in visualGDB
I am new to visualGDB. Recently I new a stm32 stand-alone project, any .cpp and .c files could be compiled correctly, but when i migrated µC/OS-II into the project, I found os_cpu_a.s file couldn't be assembled correctly.
Error logs are shown as…

FesianXu
- 447
- 4
- 19
0
votes
1 answer
how do I setup VisualGDB for Nucleo F091RC, for mbed local development?
I'm following the mbed local development tutorial (http://visualgdb.com/tutorials/arm/mbed/).
I'm setting up VisualGDB, but at step 3. "New Embedded Project" there are no devices listed, and clicking "Download more devices" does nothing.
I need to…

Doug Null
- 7,989
- 15
- 69
- 148
-1
votes
1 answer
linux + visual studio 2013 + visualgdb, undefined reference to 'dlopen'
#include
#include
using namespace std;
bool LoadEESQuote()
{
void* m_handle;
m_handle = dlopen("libEESQuoteApi.so", RTLD_LAZY);
return true;
}
int main(int argc, char *argv[])
{
LoadEESQuote();
return…

zzzlondon
- 1
- 1
-1
votes
1 answer
Crosscompiling VisualGDB/C++ Cubietruck => Linkererror
i am trying to get an opencv c++ program, which runs on my laptop, on my hardware - furthermore i should mention, that i am new to embedded programming.
May someone can help me, because i got problems while cross-compiling with VisualGDB. I am using…

wu_pa
- 1
- 2
-2
votes
0 answers
ESP 32 accesspoint configuration
I want to configure a chain of wifi access points so I can extend the range of an ESP 32 access point.
AP 1 -> AP 2 -> ...
to do this each access point must be able to connect to an upstream point (gateway)
This, I think, requires an ip, ssid, and…

Charles Bisbee
- 357
- 1
- 4
- 10
-3
votes
2 answers
How to build and link project sharing "system calls" to bootloader as a singleton object?
I'm trying to build a solution, where there would be two projects: 'bootloader' (starting after reset and doing smth), and 'mainApplication' getting the control from bootloader.
Initially i've just reproduced the example from…

user2888100
- 33
- 5
-3
votes
1 answer
VCOS does not name a type
I'm, trying to output video from raspicam to framebuffer 0, and I'm having an issue with BCM_HOST, where I get a ton of errors from the included vcos.h.
All the errors are of the same 2 types:
'VCHPRE_' does not name a type,
'vcos_boot_t' has not…

Mich
- 3,188
- 4
- 37
- 85