2015-10-14 11:39:51 +02:00
|
|
|
#ifndef __PCF7931_H
|
|
|
|
#define __PCF7931_H
|
|
|
|
|
2019-08-08 16:57:33 +02:00
|
|
|
#include "common.h"
|
2017-01-21 10:29:21 +01:00
|
|
|
|
2019-01-06 21:05:29 +01:00
|
|
|
size_t DemodPCF7931(uint8_t **outBlocks);
|
2019-04-06 20:35:58 +02:00
|
|
|
bool IsBlock0PCF7931(uint8_t *block);
|
|
|
|
bool IsBlock1PCF7931(uint8_t *block);
|
2015-10-15 10:23:15 +02:00
|
|
|
void ReadPCF7931();
|
2019-03-10 00:00:59 +01:00
|
|
|
void SendCmdPCF7931(uint32_t *tab);
|
|
|
|
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);
|
2015-10-15 10:23:15 +02: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);
|
2015-10-14 11:39:51 +02:00
|
|
|
|
2019-03-12 00:12:26 +01:00
|
|
|
#endif
|