View previous topic :: View next topic |
Author |
Message |
pop
Joined: 18 Sep 2004 Posts: 22
|
External Interrupt Trigger level |
Posted: Mon Jan 17, 2005 8:56 pm |
|
|
Hi
I've built a zero crossing circuit (using LM311) that will input the zero cross pulses into RB0/EXT pin of my 16F877 microcontroller.
What amplitude and width of a pulse can 16F877's external interrupt detect?
I looked in 16F877 datasheet but could not find it there.
Thanks. |
|
|
Haplo
Joined: 06 Sep 2003 Posts: 659 Location: Sydney, Australia
|
|
Posted: Mon Jan 17, 2005 10:48 pm |
|
|
External interrupt on the RB0/INT pin is edge triggered. Figure 3-3 in the datasheet shows that RB0 has a TTL input buffer, so it is a TTL level logic (that means the input low voltage is 0 to 0.15VDD and the input high voltage is 2.0 to VDD, according to Table 15-2).
Keep in mind that the absolute minimum input voltage for almost all the pins (including RB0) is -0.3v. |
|
|
Ttelmah Guest
|
|
Posted: Tue Jan 18, 2005 3:10 am |
|
|
The 'active time' needed for an interrupt signal, on the 877, is parameter 22, in table 15-2. It is the instruction cycle time for the processor, but asynchronous (effectively the signal should be present for one complete instruction cycle, or it can be missed). remember that the timing starts, from the active 'high' level already given by another poster.
Best Wishes |
|
|
pop
Joined: 18 Sep 2004 Posts: 22
|
|
Posted: Tue Jan 18, 2005 2:39 pm |
|
|
Thanks guys. I better look at the datasheet closely next time :D |
|
|
|