mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07: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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool em4x50_sim_send_word(uint32_t word) {
|
static bool em4x50_sim_send_word(uint32_t word) {
|
||||||
|
|
||||||
uint8_t cparity = 0x00;
|
uint8_t cparity = 0x00;
|
||||||
|
|
||||||
|
@ -722,7 +722,7 @@ bool em4x50_sim_send_word(uint32_t word) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool em4x50_sim_send_listen_window(void) {
|
static bool em4x50_sim_send_listen_window(void) {
|
||||||
|
|
||||||
uint16_t check = 0;
|
uint16_t check = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue