mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
49 lines
1.7 KiB
C
49 lines
1.7 KiB
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// See LICENSE.txt for the text of the license.
|
|
//-----------------------------------------------------------------------------
|
|
// LF ADC read/write implementation
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __LFADC_H__
|
|
#define __LFADC_H__
|
|
|
|
#include "proxmark3_arm.h"
|
|
#include "common.h"
|
|
#include "cmd.h"
|
|
#include "util.h"
|
|
#include "string.h"
|
|
|
|
extern bool g_logging;
|
|
|
|
uint8_t get_adc_avg(void);
|
|
void lf_sample_mean(void);
|
|
bool lf_test_periods(size_t expected, size_t count);
|
|
size_t lf_count_edge_periods(size_t max);
|
|
size_t lf_detect_gap(size_t max);
|
|
void lf_reset_counter(void);
|
|
|
|
bool lf_get_tag_modulation(void);
|
|
bool lf_get_reader_modulation(void);
|
|
|
|
void lf_wait_periods(size_t periods);
|
|
//void lf_init(bool reader);
|
|
void lf_init(bool reader, bool simulate, bool ledcontrol);
|
|
void lf_finalize(bool ledcontrol);
|
|
size_t lf_detect_field_drop(size_t max);
|
|
|
|
bool lf_manchester_send_bytes(const uint8_t *frame, size_t frame_len, bool ledcontrol);
|
|
void lf_modulation(bool modulation);
|
|
|
|
#endif // __LFADC_H__
|