please dont rip this site

SX Microcontroller DSP Math Method


8bit 16 step Averageing filter by Dmitry Kiryashov [zews at AHA.RU]


Hi Andrew.

I got some time and tried to rewrite your filter code to optimize it a little bit.

The formula can be rewritten as: Ave' = Ave + ( New - Ave )/16 ;

Used the same names for variables. TEMP cell isn't used.

I having more and more believing that 12 is some magical number for small completed code fragments. ;)

;       Initially written by Andrew Warren (fastfwd at ix.netcom.com).
;       Optimized by Dmitry A. Kiryashov (zews at aha.ru) 06/18/2000
;       12 clocks/words

Filter:
	mov	W, AVE
	sub	NEW, W	;NEW - AVE

	mov	W, <>NEW
	and	W, #$0F	;get /16 int part
	sb	C	;result is neg?
	or	W, #$F0	;yes
	add	AVE, W

	mov	W, <>NEW
	and	W, #$F0	;get /16 frac part
	add	AVFRAC, W
	snb	C
	inc	AVE
;
;       low nibble of AVFRAC isn't used
;       so we can utilize it for other purposes ;)

See also:


file: /Techref/scenix/lib/math/dsp/av-16w-dk_sx.htm, 1KB, , updated: 2004/6/10 13:40, local time: 2012/2/9 23:05,
TOP NEW HELP FIND: 
38.107.179.230: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?
Please DO link to this page! Digg it! / MAKE! / 

<A HREF="http://www.piclist.com/techref/scenix/lib/math/dsp/av-16w-dk_sx.htm"> SX Microcontroller DSP Math Method 8bit 16 step Averageing filter by Dmitry</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 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.com members can LOGIN to post questions, add public or private comments, links or even new pages(!). To start, fill out the form.
 
miSim DE is an excellent, portable and powerful IDE for developing PIC applications.
The only consistant, simple to use yet powerful development environment. It simulates real-world devices via virtual component "plugins" (LED,LCD,key,motor,TV,etc) in real time, has a syntax highlighting editor, macro assembler and disassembler. Regular updates and third-party plugins keep this software ahead of any other PIC IDE.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .