• About Little-endian to Big-endian
    Note: This was originally posted on 9th September 2013 at http://forums.arm.com If i change SC100 from little endian to big endian, 1. what should i do about software source code? Only change ADS1.2-...
  • swap equivelant.
    Hi, Is there an equivelan function or keyword to "swap"? Is there anyway to get the high or lower nibbles of a variable or swap them in C? any help would be appreciated. -=N
  • Endianess Swapping
    I'm trying to port some code currently being compiled by gcc that uses the __builtin_bswapXX functions. Is there an equivalent in ARM C6 or will I need to provide it myself?
  • swap the nipples
    hai kindly tel me how to swap the nipples.
  • SWAP pointers
    Function does work,like I hoped ... char *swapdata (char *destination, char *SourceLine) { char *temp; temp=SourceLine; SourceLine=destination; destination=temp; printf("in function...