mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
bug fix
This commit is contained in:
parent
d824040441
commit
ddaa6de5cf
1 changed files with 2 additions and 2 deletions
|
@ -2287,7 +2287,7 @@ static int read_without_encryption(
|
|||
uint16_t *n) {
|
||||
|
||||
felica_read_request_haeder_t request = {
|
||||
.command_code = 0x06,
|
||||
.command_code = { 0x06 },
|
||||
.number_of_service = { 1 },
|
||||
.service_code_list = { 0x00B },
|
||||
.number_of_block = { num },
|
||||
|
@ -2336,7 +2336,7 @@ static int write_without_encryption(
|
|||
uint16_t *n) {
|
||||
|
||||
felica_write_request_haeder_t hdr = {
|
||||
.command_code = 0x08,
|
||||
.command_code = { 0x08 },
|
||||
.number_of_service = { 1 },
|
||||
.service_code_list = { 0x009 },
|
||||
.number_of_block = { num },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue