• Global Vs Local Variable
    I have all global variables in my project. Since RAM data size has almost become full, i wanted to replace some of the global variables with local variables in functions. But each local variable declaration...
  • misbehaving struct
    hi, I have a program which is divided into 4 banks each of 32KBytes... Now in the common area(main.c) i have delared a struct as following.. main.c struct foo { float a; char b; }; ...
  • local variables
    suppose if i declare a local variable, where it will be stored? RAM/ROM?
  • Global Variable
    Hi, I defined uint8_t frame_buffer[320*240] to store data of pixels from OV7670 camera in OV7670.c and I'd like to use frame_buffer array in main.c, but I'm getting ''frame_buffer'' is undefined error...
  • 'rt_post_taskswitch' misbehaves?
    Hello, For your information: I have found that 'rt_post_taskswitch' is not invoked every task switch when using round-robin scheduling - only if tasks physically give up their time slice (by waiting...