數字低通濾波器模塊,做平滑濾波
//*********************************************************************
//
// 'Box' Average
//
// Standard Mean Average Calculation
// Can be modeled as FIR Low-Pass Filter where
// all coefficients are equal to '1'.
//
//*********************************************************************
module box_ave (
clk,
rstn,
sample,
raw_data_in,
ave_data_out,
data_out_valid);
parameter
ADC_WIDTH = 8, // ADC Convertor Bit Precision
LPF_DEPTH_BITS = 4; // 2^LPF_DEPTH_BITS is decimation rate of averager
//input ports
input clk; // sample rate clock
input rstn; // async reset, asserted low
input sample; // raw_data_in is good on rising edge,
input [ADC_WIDTH-1:0] raw_data_in; // raw_data input
//output ports
output [ADC_WIDTH-1:0] ave_data_out; // ave data output
output data_out_valid; // ave_data_out is valid, single pulse
reg [ADC_WIDTH-1:0] ave_data_out;
//**********************************************************************
//
// Internal Wire & Reg Signals
//
//**********************************************************************
reg [ADC_WIDTH+LPF_DEPTH_BITS-1:0] accum; // accumulator
reg [LPF_DEPTH_BITS-1:0] count; // decimation count
reg [ADC_WIDTH-1:0] raw_data_d1; // pipeline register
reg sample_d1, sample_d2; // pipeline registers
reg result_valid; // accumulator result 'valid'
wire accumulate; // sample rising edge detected
wire latch_result; // latch accumulator result
//***********************************************************************
//
// Rising Edge Detection and data alignment pipelines
//
//***********************************************************************
always @(posedge clk or negedge rstn)
begin
if( ~rstn ) begin
sample_d1 <= 0;
sample_d2 <= 0;
raw_data_d1 <= 0;
result_valid <= 0;
end else begin
sample_d1 <= sample; // capture 'sample' input
sample_d2 <= sample_d1; // delay for edge detection
raw_data_d1 <= raw_data_in; // pipeline
result_valid <= latch_result; // pipeline for alignment with result
end
end
assign accumulate = sample_d1 && !sample_d2; // 'sample' rising_edge detect
assign latch_result = accumulate && (count == 0); // latch accum. per decimation count
//***********************************************************************
//
// Accumulator Depth counter
//
//***********************************************************************
always @(posedge clk or negedge rstn)
begin
if( ~rstn ) begin
count <= 0;
end else begin
if (accumulate) count <= count + 1; // incr. count per each sample
end
end
//***********************************************************************
//
// Accumulator
//
//***********************************************************************
always @(posedge clk or negedge rstn)
begin
if( ~rstn ) begin
accum <= 0;
end else begin
if (accumulate)
if(count == 0) // reset accumulator
accum <= raw_data_d1; // prime with first value
else
accum <= accum + raw_data_d1; // accumulate
end
end
//***********************************************************************
//
// Latch Result
//
// ave = (summation of 'n' samples)/'n' is right shift when 'n' is power of two
//
//***********************************************************************
always @(posedge clk or negedge rstn)
begin
if( ~rstn ) begin
ave_data_out <= 0;
end else if (latch_result) begin // at end of decimation period...
ave_data_out <= accum >> LPF_DEPTH_BITS; // ... save accumulator/n result
end
end
assign data_out_valid = result_valid; // output assignment
endmodule
有FPGA的小朋友不妨可以試一下,只需要搭配一顆比較器、一個電阻R、一個電容C,只需要FPGA的兩根管腳,你就可以擁有ADC的功能了。
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
FPGA
+關注
關注
1630文章
21796瀏覽量
605257 -
芯片
+關注
關注
456文章
51155瀏覽量
426345 -
adc
+關注
關注
99文章
6533瀏覽量
545462
發布評論請先 登錄
相關推薦
fpga開發板使用教程之在K7上用Ibert實現基本的GTX測試
測試,而且基本上可以達到不用敲代碼就可以完成測試的目的。 下面按步驟,一步一步實現。重點的地方我
發表于 12-31 15:36
?7963次閱讀
ADC實現一個IO上掛多個按鍵
有時候做設計時,我們會遇到外部按鍵比較多,IO口不夠用的情況。這時大部分人會考慮通過其它芯片擴展IO,或者直接換一個IO口足夠的MCU。其實,還有個方法可以
發表于 09-01 13:25
?3053次閱讀
可以用FPGA做些什么
我剛買了新的NEXYS4 DDR板,我已經安裝并使用了Vivado套件。我的問題是我可以用FPGA做些什么?我是一名計算機/電氣學生,我之所以采用這種邏輯與實驗課是因為我已經參加了我學校提供的常規
發表于 05-05 07:28
我可以用STM32實現什么?為什么使用STM32而不是8051
你問,如何系統地入門學習STM32?本身就是一個錯誤的問題。假如你會使用8051 , 會寫C語言,那么STM32本身并不需要刻意的學習。你要考慮的是, 我可以用STM32實現
發表于 02-25 06:43
用matlab來實現fpga功能的設計
用matlab來實現fpga功能的設計
摘要:System Generator for DSP是Xilinx公司開發的基于Matlab的DSP開發工具?熗?時也是
發表于 01-16 18:10
?1.1w次閱讀
編寫一個可以用GRUB來引導的簡單x86內核
我們將從零開始,動手編寫一個可以用GRUB來引導的簡單x86內核,該內核會在屏幕上打印一條信息,然后——掛起!
評論