• ASSIGN not working in initialization file
    I'm trying to get COM1 to map to S1IN, but am having a few problems. I have the following in an initialization file MODE COM1 4800, 0, 8, 1 ASSIGN WIN2 <NUL >S1OUT ASSIGN COM1 <S1IN >NUL However...
  • Pass 1 dimensional array in function
    Passing any arrays by value or pointer does not work very well. I can try integrating an array into a structure, but that is not how I would do it. if I have: frame( unsigned char &mbrtubuf,...
  • Pass 2 dimensional array in function
    Does it possible to pass a 2 dimensional array to a funciton? does it accepts?
  • The target doesn't initialize arrays, why?
    Hi, my eval board is Phytec KC-161 (with 64k ext RAM, and 256k ext FLASH). Why the target doesn't initialize arrays in free running? Thank you.
  • Initializing an array
    I tried to initialize this array but it shows the error as- expression must be a modifiable lvalue. struct sur { int n[10]; }s; s.n={1,2,3};