In general, you just save the prior state of the port, register, etc.. then compare the current state to that state to check for changes.
From: http://www.myke.com/basic.htm
Bob Fehrenbach has passed on a number of his snippets for inclusion in my web page and have shown up in this book. The first detects the change in a bit and saves the new data for later execution. This code can be used to detect changes in the I/O Ports, Timers, or other registers that can be updated externally to the software execution.movf Reg, w andlw Mask ; Mask out unused bits xorwf old, w ; Compare to previous value btfsc STATUS, Z ; If Zero set, bits are the Same goto no_change xorwf old ; Bits are different, Store New ; pattern in "old"
Also:
See also:
| file: /Techref/microchip/regchg.htm, 1KB, , updated: 2004/12/6 12:49, local time: 2012/5/24 04:25,
38.107.179.231:LOG IN |
| ©2012 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://www.ecomorder.com/techref/microchip/regchg.htm"> PIC Microcontoller Methods Detecting a change in a register</A> |
| Did you find what you needed? |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.