mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fixed possibly uninitialized variables
This commit is contained in:
parent
03f29e03c1
commit
3803d5295d
2 changed files with 3 additions and 3 deletions
|
@ -1041,7 +1041,7 @@ void ReaderIso15693(uint32_t parameter)
|
|||
|
||||
// FIRST WE RUN AN INVENTORY TO GET THE TAG UID
|
||||
// THIS MEANS WE CAN PRE-BUILD REQUESTS TO SAVE CPU TIME
|
||||
uint8_t TagUID[8]; // where we hold the uid for hi15reader
|
||||
uint8_t TagUID[8] = {0, 0, 0, 0, 0, 0, 0, 0}; // where we hold the uid for hi15reader
|
||||
|
||||
// BuildIdentifyRequest();
|
||||
// //TransmitTo15693Tag(ToSend,ToSendMax+3,&tsamples, &wait);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue