gee.tha
gee.tha

Reputation: 11

8051 interrupts(hardware) capability

I have interfaced 8051 with an image sensor,the frame valid is connected to INT1,image sensor is capable of giving 60frames per second.that is 60 times frame valid interrupt per second,is 8051 is capable of handling 60 interrupts per second? correct me if i am wrong.

regards, geetha.

Upvotes: 0

Views: 78

Answers (1)

hedgehog81
hedgehog81

Reputation: 144

8051 based MCUs come in many shapes and forms. Most of modern ones have a much more efficient execution performance. The original ran at 12 cycles per instruction as far as I remember(don’t recall the isr to first instruction though.). That being said even the original ones are capable of 60 iterrupts per second. The real question though is how much processing you need to actually transfer each frame and how this will be implemented in your MCU(dma etc).

Upvotes: 1

Related Questions