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