mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
corrected stupid error (&->&&)
This commit is contained in:
parent
7b62035bc4
commit
eaefd78c64
1 changed files with 1 additions and 1 deletions
|
@ -362,7 +362,7 @@ static uint32_t get_pulse_length(void) {
|
||||||
|
|
||||||
static bool check_pulse_length(uint32_t pl, int length) {
|
static bool check_pulse_length(uint32_t pl, int length) {
|
||||||
// check if pulse length <pl> corresponds to given length <length>
|
// check if pulse length <pl> corresponds to given length <length>
|
||||||
return ((pl >= T0 * (length - EM4X50_TAG_TOLERANCE)) & (pl <= T0 * (length + EM4X50_TAG_TOLERANCE)));
|
return ((pl >= T0 * (length - EM4X50_TAG_TOLERANCE)) && (pl <= T0 * (length + EM4X50_TAG_TOLERANCE)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void em4x50_reader_send_bit(int bit) {
|
static void em4x50_reader_send_bit(int bit) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue