• 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...
  • Incorrect value displayed on system viewer window
    Hi, I'm using a STM32F4 Discovery board which has a STM32F407VG with a LIS3DSH accelerometer which is connected by SPI. I'm trying to read a register from the accelerometer and I tried writing the address...
  • how to copy values displayed in watch and locals window?
    I am using c2106/01 chip for processing pixel values of image with micro vision 4. i need the ouput values displayed in watch windows and local window for reference. i am unable to copy it. how to copy...
  • 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...