• 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...
  • Optimizing FIQ
    I have SPI interrupt defined as FIQ and the execution time for it should be less than 12us, but adding a few checks and the execution time is going out of the limit. I've seen that it takes 2-3us for...