mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
fc52fbd42f
* Add raw HF signal plotting * new fpga module hi_get_trace.v - store A/D converter output to circular buffer on FPGA * new command 'hf plot' - pull data from FPGA and display it in Graph Window
18 lines
594 B
C
18 lines
594 B
C
//-----------------------------------------------------------------------------
|
|
// piwi, 2019
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// Routines to get sample data from FPGA.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef HFSNOOP_H__
|
|
#define HFSNOOP_H__
|
|
|
|
void HfSnoop(int samplesToSkip, int triggersToSkip);
|
|
void HfPlot(void);
|
|
|
|
#endif
|