• Bit declare
    How can I declare a bit variable? THanks Nguyen The Son
  • Declare a pointer table in HCONST space
    Declaring the Pointer Table in CODE Space Hello, I would like to declare the following array of functions in HCONST space: code void (code *ArrayOfFunctions[])(void) = { MyFunct_1, MyFunct_2...
  • 16 bit pointers?
    I have a piece of code that calls various function pointers in an array. These are read-only in Flash, meaning on the Cortex-M3 I am using they are always in the first 16 KB. Is there any feature...
  • Typecasting pointer to a bit field
    Hi, Is it possible to typecast a pointer to a variable in xdata to a bit field with 13-bits? I've tried this, char xdata i _at_ 0x300; struct { unsigned short addr : 13; unsigned char flag1...
  • How to declare bit global in header file
    Hello all, I'm having problem declaring bit as global in header file to avoid including extern bit xxx in other files. I've followed Keil instruction from this link: http://www.keil.com/support...