• executing some debug/simulation functions when certain project function starts
    I have function that reads status from GPIO port and stores it in local variable and then return that value. unsigned int ulStatusRead(void) { unsigned int ulStatus; ulStatus = readPort(PORTx);...
  • executing some debug/simulation functions when certain project function starts
    I have function that reads status from GPIO port and stores it in local variable and then return that value. unsigned int ulStatusRead(void) { unsigned int ulStatus; ulStatus = readPort(PORTx);...
  • Why does Arm DDT crash when debugging a C++11 thread_safe std::vector?
    I'm using Arm DDT 20.0.1 ith gdb v8.1, and when I try to debug my program that uses a thread_safe std::vector DDT reports an invalid pointer error and exits the application. Running the same application...
  • Why does Arm DDT crash when debugging a C++11 thread_safe std::vector?
    I'm using Arm DDT 20.0.1 ith gdb v8.1, and when I try to debug my program that uses a thread_safe std::vector DDT reports an invalid pointer error and exits the application. Running the same application...
  • Error: L6218E - undefined symbol when calling functions from another projects in the same workspace
    Hi, I'm using ARM DS-5 for my current project. In my workspace, there are two projects: test and test_bsp. My purpose is that the "test_bsp" project includes header and source files, and the application...