• std::mt19937 with ARM Compiler 6 uses sys_open and breaks retarget.c
    I'm using Keil V5.30.0.0 and ArmClang.exe V6.14. When I tried using std::mt19937, like so: #include <random> std::mt19937 mt; std::uniform_int_distribution< uint32_t > dist(0); auto a = dist( mt ...
  • Std::vector C++ in Keil
    Is std::vector C++ library not supported in Keil or what? When I debug the program, it just doesn't execute the function that manipulates std::vector and returns a vector
  • Error in std include
    Hi I have a problem concerning compiling my project in uVision4. If i use an example from ST (since I'm using STM32L-Discovery board) VirtualComport_Loopback everything compiles without a problem...
  • C++ std::vector minimum capacity
    Hello! I have recently noticed that when you have a non empty std::vector it has a minimum capacity of 32 elements. No matter how big the elements are. So I was wondering if this can be set to a...
  • C++: std::cout and Serial Port relation
    Hi, I'm using the Keil uVision IDE with the MCBSTM32E develoment board trying to program in C++. To send data to a stream just use 'std::cout << "some text";'. But how do I associate or connect...