• PCLint Rules Extension
    Hi, I read that PCLint supports MISRA rules and others, and that it allows for 'User defined semantic checking for function arguments and return values'. I'd like to figure out if there is also the...
  • C++ global object multiple defined
    Hello: I'm coding in C++ for ARM for the first time, using Keil. I'm working in a project that already exists but I need to make some changes. I cannot change the libraries or the file's structure....
  • Global Object Pointer - C++ LPC1768
    Hi, I have a problem about Global Pointer of an Object. Here is my simple code #include "LPC17xx.h" #include "class.h" Class1* Pot; /* Interrupt every 100ms */ extern "C" void SysTick_Handler...
  • About asemble language and its encoding rule
    In infenion Instrction set manual,there are 2 instrctions as follow, MOV Rwn, #data4 E0 #n 2 MOV reg, #data16 E6 RR ## ## 4 where Rwn refers to Word GPR (R0, R1, …, R15); reg refers to SFR/ESFR or...
  • Stack corruption during global objects creation
    Hello, The progject I'm working on suppresses global objects creation using $Super$$__cpp_initialize__aeabi_, because some .cpp code contains OS calls so the construction is deferred to after the...