mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
armsrc: clarify static vars vs global vars, part 3
This commit is contained in:
parent
1784a3437f
commit
cb8d589fc4
16 changed files with 25 additions and 32 deletions
|
@ -130,9 +130,9 @@ AT91SAM7S256 USB Device Port
|
|||
#define SET_CONTROL_LINE_STATE 0x2221
|
||||
|
||||
AT91PS_UDP pUdp = AT91C_BASE_UDP;
|
||||
uint8_t btConfiguration = 0;
|
||||
uint8_t btConnection = 0;
|
||||
uint8_t btReceiveBank = AT91C_UDP_RX_DATA_BK0;
|
||||
static uint8_t btConfiguration = 0;
|
||||
static uint8_t btConnection = 0;
|
||||
static uint8_t btReceiveBank = AT91C_UDP_RX_DATA_BK0;
|
||||
|
||||
static const char devDescriptor[] = {
|
||||
/* Device descriptor */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue