Using a 74HC153 to multiply external interrupts..?

I was under the impressions I would need an external interrupt to be able to poll the PPM signal

An interrupt is used to deal with asynchronous events, events whose timing is not under your direct control. If you want to initiate something periodically, you generally use a polling technique. It looks like you want to use the latter.

Don