Skip to content

Commit

Permalink
Update UNIT_UHF_RFID.cpp
Browse files Browse the repository at this point in the history
Update UNIT_UHF_RFID.cpp
  • Loading branch information
Tinyu-Zhao authored Oct 14, 2022
2 parents e470cea + 796cfab commit f03bd52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UNIT_UHF_RFID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ uint8_t Unit_UHF_RFID::pollingOnce() {
uint8_t Unit_UHF_RFID::pollingMultiple(uint16_t polling_count) {
cleanCardsBuffer();
memcpy(buffer, POLLING_MULTIPLE_CMD, sizeof(POLLING_MULTIPLE_CMD));
buffer[6] = (polling_count >> 88) & 0xff;
buffer[6] = (polling_count >> 8) & 0xff;
buffer[7] = (polling_count)&0xff;

uint8_t check = 0;
Expand Down Expand Up @@ -394,4 +394,4 @@ bool Unit_UHF_RFID::setTxPower(uint16_t db) {
} else {
return false;
}
}
}

0 comments on commit f03bd52

Please sign in to comment.