text
[RRG-proxmark3.git] / armsrc / pcf7931.h
blobb9ad40a921cda903e5331c5624a1bcfcacff6ea8
1 #ifndef __PCF7931_H
2 #define __PCF7931_H
4 #include "common.h"
6 size_t DemodPCF7931(uint8_t **outBlocks);
7 bool IsBlock0PCF7931(uint8_t *block);
8 bool IsBlock1PCF7931(uint8_t *block);
9 void ReadPCF7931(void);
10 void SendCmdPCF7931(uint32_t *tab);
11 bool AddBytePCF7931(uint8_t byte, uint32_t *tab, int32_t l, int32_t p);
12 bool AddBitPCF7931(bool b, uint32_t *tab, int32_t l, int32_t p);
13 bool AddPatternPCF7931(uint32_t a, uint32_t b, uint32_t c, uint32_t *tab);
14 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);
16 #endif