mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 18:47:24 -07:00
Decreased BigBuff mem, some elf flasher fixes (needs more work) but flashing correctly currently.
This commit is contained in:
parent
8caef54055
commit
815f3f2559
4 changed files with 17 additions and 16 deletions
|
@ -271,7 +271,7 @@ void SimulateTagHfListen(void)
|
|||
|
||||
void ReadMem(int addr)
|
||||
{
|
||||
const DWORD *data = ((DWORD *)addr);
|
||||
const BYTE *data = ((BYTE *)addr);
|
||||
|
||||
Dbprintf("%x: %02x %02x %02x %02x %02x %02x %02x %02x",
|
||||
addr, data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]);
|
||||
|
|
|
@ -13,7 +13,7 @@ typedef unsigned char byte_t;
|
|||
|
||||
// The large multi-purpose buffer, typically used to hold A/D samples,
|
||||
// maybe processed in some way.
|
||||
DWORD BigBuf[12000];
|
||||
DWORD BigBuf[8000];
|
||||
|
||||
/// appmain.h
|
||||
void ReadMem(int addr);
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
#include "hitag2.h"
|
||||
#include "../common/crc16.c"
|
||||
|
||||
int sprintf(char *dest, const char *fmt, ...);
|
||||
|
||||
void AcquireRawAdcSamples125k(BOOL at134khz)
|
||||
{
|
||||
if (at134khz)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue