mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-11 15:37:46 +08:00
added missing static statements
This commit is contained in:
parent
ced056be19
commit
50eb90bdc7
1 changed files with 2 additions and 2 deletions
|
@ -691,7 +691,7 @@ static bool em4x50_sim_send_byte_with_parity(uint8_t byte) {
|
|||
return true;
|
||||
}
|
||||
|
||||
bool em4x50_sim_send_word(uint32_t word) {
|
||||
static bool em4x50_sim_send_word(uint32_t word) {
|
||||
|
||||
uint8_t cparity = 0x00;
|
||||
|
||||
|
@ -722,7 +722,7 @@ bool em4x50_sim_send_word(uint32_t word) {
|
|||
return true;
|
||||
}
|
||||
|
||||
bool em4x50_sim_send_listen_window(void) {
|
||||
static bool em4x50_sim_send_listen_window(void) {
|
||||
|
||||
uint16_t check = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue