mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-30 04:19:59 -07:00
Api Symbols: replace asserts with checks
merge ofw commit
This commit is contained in:
@@ -2,19 +2,19 @@
|
||||
|
||||
class WIEGAND {
|
||||
public:
|
||||
WIEGAND();
|
||||
void begin();
|
||||
void end();
|
||||
bool available();
|
||||
unsigned long getCode();
|
||||
unsigned long getCodeHigh();
|
||||
int getWiegandType();
|
||||
WIEGAND(void);
|
||||
void begin(void);
|
||||
void end(void);
|
||||
bool available(void);
|
||||
unsigned long getCode(void);
|
||||
unsigned long getCodeHigh(void);
|
||||
int getWiegandType(void);
|
||||
|
||||
static void ReadD0();
|
||||
static void ReadD1();
|
||||
static void ReadD0(void);
|
||||
static void ReadD1(void);
|
||||
|
||||
private:
|
||||
static bool DoWiegandConversion();
|
||||
static bool DoWiegandConversion(void);
|
||||
static unsigned long
|
||||
GetCardId(unsigned long* codehigh, unsigned long* codelow, char bitlength);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user