• CPP examples
    Hi all, i am using LPC2368 controller and RV-MDK tools, where can i get the cpp examples for the above? thanks in advance srinivas
  • Error while compiling .cpp
    I'm doing a speech project on MCBSTM32E board (STM32F103ZE) i was testing a basic blinky code in .cpp form but i'm getting the following error STM32_Init.c(34): error: #5: cannot open source input file...
  • cpp-check integration into uVision
    Hi, we would like to use the tool cpp-check (instead of pc-lint). Now I try to start it from the uVision IDE. ( http://cppcheck.sourceforge.net/ ) Integrations are available for these development...
  • How to call C functions from CPP file
    I have somу C source files and some CPP source files. I'm trying to call function, written in C from CPP file. For example filea.c int apb(int a, int b) { return a+b; } filea.h ...
  • Using C++11 only for .cpp files
    I have a project with mixed C and C++ source files (more specifically, FreeRTOS). If I use C++03, Keil correctly determines the language based on extension (.cpp or .c) and everything is fine. I...