• Array initialization inside struct
    Hello, I try compile this code (.c) with --c99 option struct sx { char c; char a[]; }; static struct sx xx = { 1, {[5] = 0} }; and have error error: #146: too many initializer values How...
  • Cortex, events inside a interrupt
    Good day, IÂ'm starting a project with Cortex M3 (STM32F103R more exactly) using the RTX. IÂ'm having troubles when I set some event ("os_evt_set" or "os_mbx_send") inside a interrupt. Every time...
  • isr_evt_set inside a uart interrupt not working
    Hi All, I am working on project using At91sam7s128 and have isr_evt_set(0x0001,TaskIDUSPort0) inside my uart interrupt. Question is what will happen if another new uart interrupt occurs while...
  • Can Serial Communication work inside a Interrupt??
    Dear Frnds, Do serial communication like " printf " can work inside interrupt??? Is there any Potential problem with communication with serial communication inside a interrupt???? Rajesh
  • static inside struct
    Hi, I have problem with struct. Here is my code, please correct me. struct main_func { static int kval; int temp3; char buf[8]; }main_f; If I do not put "static" to "int kval", everything...