mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
CHG: download data from device to client, make a debugstatment when send command failed.
This commit is contained in:
parent
1cc80785e5
commit
f133389866
1 changed files with 7 additions and 3 deletions
|
@ -1274,9 +1274,13 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
||||||
LED_B_ON();
|
LED_B_ON();
|
||||||
uint8_t *BigBuf = BigBuf_get_addr();
|
uint8_t *BigBuf = BigBuf_get_addr();
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
|
size_t startidx = c->arg[0];
|
||||||
|
uint8_t isok = FALSE;
|
||||||
for(size_t i = 0; i < c->arg[1]; i += USB_CMD_DATA_SIZE) {
|
for(size_t i = 0; i < c->arg[1]; i += USB_CMD_DATA_SIZE) {
|
||||||
len = MIN((c->arg[1] - i),USB_CMD_DATA_SIZE);
|
len = MIN((c->arg[1] - i),USB_CMD_DATA_SIZE);
|
||||||
cmd_send(CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K,i,len,BigBuf_get_traceLen(),BigBuf+c->arg[0]+i,len);
|
isok = cmd_send(CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K, i, len, BigBuf_get_traceLen(), BigBuf + startidx + i, len);
|
||||||
|
if (!isok)
|
||||||
|
Dbprintf("transfer to client failed :: | bytes %d", len);
|
||||||
}
|
}
|
||||||
// Trigger a finish downloading signal with an ACK frame
|
// Trigger a finish downloading signal with an ACK frame
|
||||||
cmd_send(CMD_ACK, 1, 0, BigBuf_get_traceLen(), getSamplingConfig(), sizeof(sample_config));
|
cmd_send(CMD_ACK, 1, 0, BigBuf_get_traceLen(), getSamplingConfig(), sizeof(sample_config));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue