| 1 | //----------------------------------------------------------------------------- |
| 2 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> |
| 3 | // |
| 4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
| 5 | // at your option, any later version. See the LICENSE.txt file for the text of |
| 6 | // the license. |
| 7 | //----------------------------------------------------------------------------- |
| 8 | // Data utilities |
| 9 | //----------------------------------------------------------------------------- |
| 10 | |
| 11 | #include <string.h> |
| 12 | #include <stdint.h> |
| 13 | #include "data.h" |
| 14 | #include "ui.h" |
| 15 | #include "proxusb.h" |
| 16 | #include "cmdmain.h" |
| 17 | |
| 18 | uint8_t sample_buf[SAMPLE_BUFFER_SIZE]; |
| 19 | |
| 20 | void GetFromBigBuf(uint8_t *dest, int bytes) |
| 21 | { |
| 22 | int n = bytes/4; |
| 23 | |
| 24 | if (n % 48 != 0) { |
| 25 | PrintAndLog("bad len in GetFromBigBuf"); |
| 26 | return; |
| 27 | } |
| 28 | |
| 29 | for (int i = 0; i < n; i += 12) { |
| 30 | UsbCommand c = {CMD_DOWNLOAD_RAW_ADC_SAMPLES_125K, {i, 0, 0}}; |
| 31 | SendCommand(&c); |
| 32 | WaitForResponse(CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K); |
| 33 | memcpy(dest+(i*4), sample_buf, 48); |
| 34 | } |
| 35 | } |