mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
does this solve opensuse warning?
This commit is contained in:
parent
1a89e2a629
commit
d0241ed24f
1 changed files with 4 additions and 1 deletions
|
@ -726,7 +726,10 @@ static void PacketReceived(PacketCommandNG *packet) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case CMD_LF_SAMPLING_SET_CONFIG: {
|
case CMD_LF_SAMPLING_SET_CONFIG: {
|
||||||
setSamplingConfig((sample_config *) packet->data.asBytes);
|
sample_config c;
|
||||||
|
memcpy(&c, packet->data.asBytes, sizeof(sample_config));
|
||||||
|
setSamplingConfig(&c);
|
||||||
|
// setSamplingConfig((sample_config *) packet->data.asBytes);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case CMD_LF_ACQ_RAW_ADC: {
|
case CMD_LF_ACQ_RAW_ADC: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue