8bit 16 step Averageing filter by
Andrew Warren
; Written by Andrew Warren [fastfwd at ix.netcom.com].
A couple days ago, I wrote that an averaging filter of the form:
(WIDTH-1)*AVE + NEW
AVE = -------------------
WIDTH
was "absurdly simple" if WIDTH = 256. A couple of people have asked
in private email for the code; here it is:
AVEHI equ [ANY FILE REGISTER] ;Holds the average [0-255].
AVELO equ [ANY FILE REGISTER] ;Holds the fractional part
;of the average.
NEW equ [ANY FILE REGISTER] ;Holds the new sample.
FILTER256:
mov W, AVEHI
mov W, NEW-w
sb C
dec AVEHI
add AVELO, W
snb C
inc AVEHI
7 words, 7 instruction cycles, "NEW" is unchanged.
file: /Techref/scenix/lib/math/dsp/av-256w-aw_sx.htm, 1KB, , updated: 2004/6/10 13:40, local time: 2024/11/20 03:40,
|
| ©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://linistepper.com/Techref/scenix/lib/math/dsp/av-256w-aw_sx.htm"> PIC Microcontroller DSP Math Method 8bit 16 step Averageing filter</A> |
Did you find what you needed?
|