mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
fpga/min_max_tracker.v: english
This commit is contained in:
parent
3b2fee43ea
commit
238c503c38
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
// (resp. low peak) is reached/detected, since you can't know it isn't a
|
// (resp. low peak) is reached/detected, since you can't know it isn't a
|
||||||
// local minima (resp. maxima) until then.
|
// local minima (resp. maxima) until then.
|
||||||
// This also means the peaks are detected with an unpredictable delay.
|
// This also means the peaks are detected with an unpredictable delay.
|
||||||
// This algorithm can't therefore be used directly for realtime peak detections,
|
// This algorithm therefore can't be used directly for realtime peak detections,
|
||||||
// but it can be used as a simple envelope follower.
|
// but it can be used as a simple envelope follower.
|
||||||
module min_max_tracker(input clk, input [7:0] adc_d, input [7:0] threshold,
|
module min_max_tracker(input clk, input [7:0] adc_d, input [7:0] threshold,
|
||||||
output [7:0] min, output [7:0] max);
|
output [7:0] min, output [7:0] max);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue