• DATA ABORT ERROR in memmove intruction
    Dear all, I am facing DATA ABORT ERROR due to which PROCFAULT raised. I am seeing the instruction as memmove function. 0x3ff9fc DataUtilities::Index+0x2c: e1a0c005 MOV IP, R5 <pos> 0x3ffa00 DataUtilities...
  • format specifier
    static char x; printf("%d",x); above statement does not work. but following statement work printf("%bd",x); what is differance between format specifier %d and %bd
  • Specifying the start address
    In assembly, the "ORG" directive can be used to specify the start address of the code. Can this be done in C? if possible then How? ..Thanx
  • C274 - absolute specifier illegal
    I am trying to put the software version number (a string) in the code flash at a specific location. When I leave off the "_at_" specifying the address, it works just fine. When I include the "_at_" I...
  • Specifying address of C-procedure
    How do I tell the Keil C compiler/linker to place certain C-procedures in specific parts of memory? Example: The procedure below must be placed at an address above 0x4000. void ADC_start...