• Bitfield
    Hello to everyone, i have this example: union { struct { unsigned char x:4; unsigned char y:4; } nibble; unsigned char abyte; } value; I'am not sure how to acces to the byte and the...
  • Bitfield
    Hello to everyone, i have this example: union { struct { unsigned char x:4; unsigned char y:4; } nibble; unsigned char abyte; } value; I'am not sure how to acces to the byte and the...
  • Bitfield Array
    Hello to everyone, I want to my ARM7 to access a (const)bitfield array, but as i'am absolute beginner not sure about C-syntax. My textbook don't includes Bitfield-Array. Hope someone takes a look at...
  • Bitfield Array
    Hello to everyone, I want to my ARM7 to access a (const)bitfield array, but as i'am absolute beginner not sure about C-syntax. My textbook don't includes Bitfield-Array. Hope someone takes a look at...
  • Initializing a bitfield
    I get warning C141 'struct' to many initializer. struct { unsigned a:1; unsigned b:1; unsigned c:1; unsigned d:1; unsigned e:1; unsigned f:1; unsigned g:1; unsigned h:1; } blabla={1,1,1,0...