• Named register variables
    Hello! In one of my applications i need to copy value of a register in a C variable. Because I work with a LM3S811 I cannot use inline assembler (because it is not permitted when generating Thumb code...
  • Keil Named Register Variable not working
    Somebody ever used named register variables successfully and can tell me what i am doing wrong? example code: #pragma O0 // optimization off #pragma thumb // thumb mode __global_reg(8) int myR8;...
  • STM32 CAN registers name in keil
    Hi all ! Excuse me for my english ! I have a problem with CAN controller in STM32F107 . For use the registers of reference manual in keil, must use the nick name of each register that available...
  • Compiler name mangling
    Hi, Having wondered why the linker couldn't locate a code segment which I'd specified as part of the BL51 command line, I took a look at listing file to discover that the compiler had (somewhat arbitrarily...
  • array with names
    hello to all of you, is there a way to have a array and give each element of the array a special name? An example: float my_array[20]; . . for(i=0;i<20;i++) send(my_array[i]; . . and each element...