• 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
  • Structures inside a union
    I did read some threads on the forum but could not solve my problem. I want to make a union of to data sets (a structure and an array). My code is as follows: #define COMMS_BUFFER_SIZE 80...