please dont rip this site

PIC Microcontroller DSP Math Method

8bit 16 step Averageing filter by Andrew Warren

    ; Written by Andrew Warren [fastfwd at ix.netcom.com].
    ;
    ;       (NEW - AVE) + 16*AVE
    ; AVE = --------------------
    ;               16

    NEW     EQU     [ANY FILE REGISTER]   ;HOLDS NEW SAMPLE [0-255].
    AVE     EQU     [ANY FILE REGISTER[   ;HOLDS THE AVERAGE [0-255].
    AVFRAC  EQU     [ANY FILE REGISTER]   ;HOLDS THE FRACTIONAL PART
                                          ;OF THE AVERAGE [0-15].
    TEMP    EQU     [ANY FILE REGISTER]   ;TEMPORARY STORAGE.

    FILTER:

            MOVLW   00001111B       ;MASK OFF ALL BUT THE FRACTIONAL
            ANDWF   AVFRAC          ;PART OF THE OLD AVERAGE
                                    ;(AVFRAC'S HI-NIBBLE CAN
                                    ;CONTAIN GARBAGE).

            MOVF    AVE,W           ;NEW = NEW - AVE.
            SUBWF   NEW             ;CARRY = 0 IF THE DIFFERENCE IS
                                    ;NEGATIVE, CARRY = 1 IF POSITIVE.

            SWAPF   AVE,W           ;HI-NIBBLE OF W = MIDDLE NIBBLE
                                    ;OF 16*AVE.

            MOVWF   TEMP            ;LO-NIBBLE OF TEMP = HI-NIBBLE
                                    ;OF 16*AVE (LO-NIBBLE OF 16*AVE
                                    ;IS ALWAYS 0000).

    ; NEW CONTAINS (NEW - AVE) AND [TEMP:W] HOLDS 16*AVE.
    ; ADD THEM TOGETHER.

            SKPC                    ;IF (NEW - AVE) WAS NEGATIVE,
            DECF    TEMP            ;ADJUST THE HI-NIBBLE OF 16*AVE.

            ANDLW   11110000B       ;W = LO-BYTE OF 16*AVE.
            IORWF   AVFRAC,W        ;(INCLUDE AVE'S FRACTIONAL
                                    ;PART).

            ADDWF   NEW,W           ;W = LO-BYTE OF
                                    ;((NEW-AVE) + 16*AVE).
                                    ;CARRY = 1 IF SUM > 255,
                                    ;CARRY = 0 OTHERWISE.

            MOVWF   AVFRAC          ;LO-NIBBLE OF AVFRAC =
                                    ;FRACTIONAL PART OF FINAL
                                    ;RESULT.  HI-NIBBLE = GARBAGE.

            ANDLW   11110000B       ;W = (LO-NIBBLE OF
                                    ;((15*AVE+NEW)/16)) * 16.

            MOVWF   AVE             ;AVE = (LO-NIBBLE OF
                                    ;((15*AVE+NEW)/16)) * 16.

            SWAPF   AVE             ;AVE = LO-NIBBLE OF
                                    ;((15*AVE+NEW)/16).

    ; AVE'S LO-NIBBLE CONTAINS THE LO-NIBBLE OF THE FINAL RESULT.
    ; AVE'S HI-NIBBLE = 0000.

            SKPNC                   ;LO-NIBBLE OF TEMP =
            INCF    TEMP            ;HI-NIBBLE OF ((15*AVE+NEW)/16).

            SWAPF   TEMP,W          ;HI-NIBBLE OF W = HI-NIBBLE OF
            ANDLW   11110000B       ;((15*AVE+NEW)/16).
                                    ;LO-NIBBLE OF W = 0000.

    ; W'S HI-NIBBLE CONTAINS THE HI-NIBBLE OF THE FINAL RESULT.
    ; LO-NIBBLE = 0000.

            IORWF   AVE             ;COMBINE THE HI- AND LO-NIBBLES
                                    ;AND STORE THE FINAL RESULT IN
                                    ;AVE.

    ; AVE CONTAINS THE NEW AVERAGE.

    See?  That wasn't too hard; just 20 words of program space and
    20 instruction cycles...  And not a single floating-point
    operation anywhere in there.



file: /Techref/scenix/lib/math/dsp/av-16w-aw.htm, 3KB, , updated: 2004/6/10 14:40, local time: 2024/3/28 15:50,
TOP NEW HELP FIND: 
34.203.221.104:LOG IN

 ©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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.piclist.com/techref/scenix/lib/math/dsp/av-16w-aw.htm"> PIC Microcontroller DSP Math Method 8bit 16 step Averageing filter</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
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 www.piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .