mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fix downloading lf config
This commit is contained in:
parent
b6dcfbf078
commit
393d998ad9
2 changed files with 3 additions and 6 deletions
|
@ -726,10 +726,8 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
break;
|
||||
}
|
||||
case CMD_LF_SAMPLING_GET_CONFIG: {
|
||||
sample_config *c;
|
||||
c = getSamplingConfig();
|
||||
Dbprintf("CMD_LF_SAMPLING_GET_CONFIG - before answer");
|
||||
reply_ng(CMD_LF_SAMPLING_GET_CONFIG, PM3_SUCCESS, (uint8_t *)c, sizeof(sample_config));
|
||||
sample_config *config = getSamplingConfig();
|
||||
reply_ng(CMD_LF_SAMPLING_GET_CONFIG, PM3_SUCCESS, (uint8_t *)config, sizeof(sample_config));
|
||||
break;
|
||||
}
|
||||
case CMD_LF_SAMPLING_SET_CONFIG: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue