mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
armsrc: clarify static vars vs global vars
This commit is contained in:
parent
fbaf634779
commit
3e7512a5d5
20 changed files with 101 additions and 102 deletions
|
@ -1150,7 +1150,7 @@ static void CodeAndTransmit14443bAsReader(const uint8_t *cmd, int len) {
|
|||
|
||||
TransmitFor14443b_AsReader();
|
||||
|
||||
if (trigger) LED_A_ON();
|
||||
if (g_trigger) LED_A_ON();
|
||||
|
||||
LogTrace(cmd, len, time_start, GetCountSspClk() - time_start, NULL, true);
|
||||
}
|
||||
|
@ -1578,7 +1578,7 @@ void RAMFUNC SniffIso14443b(void) {
|
|||
}
|
||||
|
||||
static void iso14b_set_trigger(bool enable) {
|
||||
trigger = enable;
|
||||
g_trigger = enable;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue