This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Question using bit variables

Hi,

I'm using the ST32F103G uC and Keli uVision 4.22 IDE.

Something that I don't understand is how to use single bits as variables or as a function return value. With other compilers I know 'bit' and 'bool' but somehow this doesn't seem to work with the armcc compiler. I searched the Internet but could not find anything in that direction.

Who can help me out?

Thanks in advance,

Henk

Parents
  • the Cortex-M3 have

    • Bit-banding. The bus matrix converts bit-band alias accesses into bit-band region
    accesses. It performs:
    — bit field extract for bit-band loads
    — atomic read-modify-write for bit-band stores.

    to use it you must use the variable names/addresses from the ST library

    Erik

Reply
  • the Cortex-M3 have

    • Bit-banding. The bus matrix converts bit-band alias accesses into bit-band region
    accesses. It performs:
    — bit field extract for bit-band loads
    — atomic read-modify-write for bit-band stores.

    to use it you must use the variable names/addresses from the ST library

    Erik

Children