• in gcc we use __attribute__((interrupt("FIQ")))  for fiq handler in C.  what is the equivalent using armcc compiler?
    in gcc we use __attribute__((interrupt("FIQ")))  for fiq handler in C.  what is the equivalent using armcc compiler?
  • in gcc we use __attribute__((interrupt("FIQ")))  for fiq handler in C.  what is the equivalent using armcc compiler?
    in gcc we use __attribute__((interrupt("FIQ")))  for fiq handler in C.  what is the equivalent using armcc compiler?
  • in arm7tdmi, when FIQ and RIQ occures at same time so how both are executed sequentially,first FIQ and thenIRQ?
    in arm7tdmi, suppose instruction is being executed and at same time FIQ and IRQ both occur  at same time.now according to priority FIQ will be handled then IRQ  but my question is that how it will handled...
  • in arm7tdmi, when FIQ and RIQ occures at same time so how both are executed sequentially,first FIQ and thenIRQ?
    in arm7tdmi, suppose instruction is being executed and at same time FIQ and IRQ both occur  at same time.now according to priority FIQ will be handled then IRQ  but my question is that how it will handled...
  • FIQ
    I am a real novice programming ARM7. I have a LPC2138 evaluation board and I use the environment uVision4. I tried to write a programm in C to handle an interrupt FIQ. To do this I followed the example...