by Bob Ammerman [RAMMERMAN at PRODIGY.NET]
The maximum jitter on a PIC is one cycle. This is because some instructions take one cycle and others take two cycles. It is possible to completely dejitter the PIC by examining the value of the timer register in the interrupt handler. For example, I use the following code on an 18C to do exactly that:
org 8 ; The next two instructions are used to eliminate jitter on the ; interrupt timing. When the interrupt occurs, it may have to wait ; an extra cycle becuase a two cycle instruction is in progress. ; ; We can tell the difference by looking at the least significant ; bit of TMR2. If the next instruction skips we use 2 cycles, if it ; doesn't skip then we use 3 cycles. The net result is that we add ; a cycle when needed so that we always get to 'dejittered' at the ; exact same time relative to the actual rollover of TMR2! btfsc TMR2,0,A bra dejittered dejittered:
Note that this technique should work on all PICs.
Also, on an 18C external interrupts are dejittered by the PIC hardware, as noted by this quote from the last paragraph of section 7.0 of the 18C452 datasheet:
>For external interrupt events, such as the INT pins or >the PORTB input change interrupt, the interrupt latency >will be three to four instruction cycles. The exact >latency is the same for one or two cycle instructions.
I don't believe that external interrupts are dejittered by any prior PIC families. Please correct me if I am wrong.
So, my conclusion is that for timer and external interrupts the 18C can process the interrupt with zero jitter. Non 18C chips can do that for timer interrupts but not external interrupts.
Bob Ammerman
RAm Systems
(contract development of high performance, high function, low-level software)
[ed: note that the Scenix SX PIC clones are completely deterministic with reguard to timer and external interrupts ]
file: /Techref/microchip/isrdejit.htm, 2KB, , updated: 2008/2/26 02:51, local time: 2024/10/10 22:05,
18.207.255.67:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://piclist.com/techref/microchip/isrdejit.htm"> PIC Micro Controller Interrupt Routine </A> |
Did you find what you needed? |
PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to piclist.com! |
.