• splitting the code memory into two parts
    I am using keil uvision2 and C51. I want to split the resulting hex file into 2 parts . please how is it possible?
  • single bit twos complement
    what do you expect the result to be? typedef struct { signed int bit:1; } T_oddity; T_oddity oddity; int foobar( int arg ) { oddity.bit = arg; return oddity.bit; } void foochocolate ( void...
  • Splitting RAM memory into segments
    Hello All, I am developing code for STM32F207 ARM microprocessor. Application has two types of variables that need to be separated in different RAM memory segments. I declare variable like this:...
  • split a program into two and locate at different addreses
    I want to split my program in two and locate at differenct addreses. main program may be located at 0x1000. and only one function called by main shall be located at say 0x8000. how to create that function...
  • Two MSC devices on single USB
    I would like to create composite device with two MSC devices using Middleware 7.30 on STM3F4 chip. I have configured everything (already did several projects, so I am familiar with run-time configuration...