mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Fixed syntax error in flags declaration in hf_young.c
This commit is contained in:
parent
41a43bc85c
commit
0cd6e950b0
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ void RunMod(void) {
|
||||||
int button_pressed = BUTTON_HELD(1000);
|
int button_pressed = BUTTON_HELD(1000);
|
||||||
if (button_pressed == BUTTON_NO_CLICK) { // No button action, proceed with sim
|
if (button_pressed == BUTTON_NO_CLICK) { // No button action, proceed with sim
|
||||||
|
|
||||||
uint16_t flags = 0
|
uint16_t flags = 0;
|
||||||
FLAG_SET_UID_IN_DATA(flags, 4);
|
FLAG_SET_UID_IN_DATA(flags, 4);
|
||||||
uint8_t data[PM3_CMD_DATA_SIZE] = {0}; // in case there is a read command received we shouldn't break
|
uint8_t data[PM3_CMD_DATA_SIZE] = {0}; // in case there is a read command received we shouldn't break
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue