• bits location and order, how?
    hi, in "standard" way it is possible to locate a variable next way: ; motors control register MOTORS_CONTROL DATA 0x20 ; motor 1 CTRL1_UP BIT CONTROL_BITS.0 CTRL1_DOWN BIT CONTROL_BITS.1 CTRL1_LEFT...
  • how to use a bit variable defined in another module?
    Gentlemen: I wanna use a bit variable in file:assem.asm.And the bit variable is defined in another file:main.c;Just as follows: in main.c unsigned char bdata flags; sbit red_flag = flags^1; in assem...
  • Defining a variable in the bit-band area
    I wonder to know is there anyone who define a variable in bit-band area in c programming language for cortex-M3. I have followed the compiler attribute based on the below link www.keil.com/...
  • Locating Variables to Specific Memory Location
    I wish to locate a structure to a specific memory range in External RAM. No other data can be allowed to use this memory range. What I am trying to do is to re-claim RAM for other purposes using...
  • Locating a variable to an specific address
    Hi, I'm trying to locate a variable to an specific address. There are three ways to do this: 1) using options of the file that have the variable and config the RAM area 2) unsigned int cont...