mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
Internal packet structs don't need to be packed, only the wired structs
This commit is contained in:
parent
e4f00c52da
commit
d05cd5ff2b
1 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ typedef struct {
|
||||||
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
||||||
} data;
|
} data;
|
||||||
bool ng; // does it store NG data or OLD data?
|
bool ng; // does it store NG data or OLD data?
|
||||||
} PACKED PacketCommandNG;
|
} PacketCommandNG;
|
||||||
|
|
||||||
// For reception and CRC check
|
// For reception and CRC check
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -111,7 +111,7 @@ typedef struct {
|
||||||
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
||||||
} data;
|
} data;
|
||||||
bool ng; // does it store NG data or OLD data?
|
bool ng; // does it store NG data or OLD data?
|
||||||
} PACKED PacketResponseNG;
|
} PacketResponseNG;
|
||||||
|
|
||||||
// For reception and CRC check
|
// For reception and CRC check
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue