proxmark3/armsrc/pcf7931.h

32 lines
1.5 KiB
C
Raw Normal View History

2022-01-06 09:19:46 +08:00
//-----------------------------------------------------------------------------
// 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.
//-----------------------------------------------------------------------------
#ifndef __PCF7931_H
#define __PCF7931_H
#include "common.h"
2017-01-21 17:29:21 +08:00
2021-11-18 21:26:41 +08:00
size_t DemodPCF7931(uint8_t **outBlocks, bool ledcontrol);
2019-04-07 02:35:58 +08:00
bool IsBlock0PCF7931(uint8_t *block);
2022-01-06 22:40:11 +08:00
bool IsBlock1PCF7931(const uint8_t *block);
2021-11-18 21:26:41 +08:00
void ReadPCF7931(bool ledcontrol);
2022-01-06 22:40:11 +08:00
void SendCmdPCF7931(const uint32_t *tab, bool ledcontrol);
2019-03-10 07:00:59 +08:00
bool AddBytePCF7931(uint8_t byte, uint32_t *tab, int32_t l, int32_t p);
bool AddBitPCF7931(bool b, uint32_t *tab, int32_t l, int32_t p);
bool AddPatternPCF7931(uint32_t a, uint32_t b, uint32_t c, uint32_t *tab);
2021-11-18 21:26:41 +08:00
void WritePCF7931(uint8_t pass1, uint8_t pass2, uint8_t pass3, uint8_t pass4, uint8_t pass5, uint8_t pass6, uint8_t pass7, uint16_t init_delay, int32_t l, int32_t p, uint8_t address, uint8_t byte, uint8_t data, bool ledcontrol);
2019-03-12 07:12:26 +08:00
#endif