From 65c1a6b2c1e634b9c447bed985b5d8d11c2c9c33 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 2 May 2018 18:10:17 +0200 Subject: [PATCH] remove old data.c files. Code now in cmdmain.c --- client/data.c | 30 ------------------------------ client/data.h | 26 -------------------------- 2 files changed, 56 deletions(-) delete mode 100644 client/data.c delete mode 100644 client/data.h diff --git a/client/data.c b/client/data.c deleted file mode 100644 index 14fabeac9..000000000 --- a/client/data.c +++ /dev/null @@ -1,30 +0,0 @@ -//----------------------------------------------------------------------------- -// Copyright (C) 2010 iZsh -// -// This code is licensed to you under the terms of the GNU GPL, version 2 or, -// at your option, any later version. See the LICENSE.txt file for the text of -// the license. -//----------------------------------------------------------------------------- -// Data utilities -//----------------------------------------------------------------------------- - -#include -#include -#include "data.h" -#include "ui.h" -#include "proxmark3.h" -#include "cmdmain.h" - -// this triggers a download sequence from device, its received inside cmdmain.c UsbCommandReceived() -void GetFromBigBuf(uint8_t *dest, uint32_t len, uint32_t start_index) { -} - - -// this will download the EMULATOR memory part from device, -// inside the BigBuf EML zon. -bool GetEMLFromBigBuf(uint8_t *dest, uint32_t len, uint32_t start_index) { -} - -// Download data from flashmem, rdv40 -void GetFromFlashMen(uint8_t *dest, uint32_t len, uint32_t start_index) { -} diff --git a/client/data.h b/client/data.h deleted file mode 100644 index c69780ffe..000000000 --- a/client/data.h +++ /dev/null @@ -1,26 +0,0 @@ -//----------------------------------------------------------------------------- -// Copyright (C) 2010 iZsh -// -// This code is licensed to you under the terms of the GNU GPL, version 2 or, -// at your option, any later version. See the LICENSE.txt file for the text of -// the license. -//----------------------------------------------------------------------------- -// Data utilities -//----------------------------------------------------------------------------- - -#ifndef DATA_H__ -#define DATA_H__ -#include -#include -#include "util.h" - -//#define FILE_PATH_SIZE 1000 - -/* -extern uint32_t sample_buf_size; -extern uint8_t* sample_buf; -extern void GetFromBigBuf(uint8_t *dest, uint32_t len, uint32_t start_index); -extern bool GetEMLFromBigBuf(uint8_t *dest, uint32_t len, uint32_t start_index); -extern void GetFromFlashMen(uint8_t *dest, uint32_t len, uint32_t start_index); -*/ -#endif