RTC: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
Line 22: Line 22:


====IRQ Danger====
====IRQ Danger====
First off, it is important to note that the [[IRQ]] number is 8. This means it has a lower priority than most of other IRQs. You must keep this in mind when programming other IRQ handlers. If you have a harddisk IRQ handler that waits for time to pass inside the IRQ handler, then your machine will be stuck in an infinite loop. An IRQ of higher number will not interrupt an IRQ of lower number.
First off, it is important to note that the [[IRQ]] number is 8. This means it has a lower priority than most of the other IRQs. You must keep this in mind when programming other IRQ handlers. If you have a harddisk IRQ handler that waits for time to pass inside the IRQ handler, then your machine will be stuck in an infinite loop. An IRQ of higher number will not interrupt an IRQ of lower number.



====Turning on IRQ 8====
====Turning on IRQ 8====