mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
syntax sugar
This commit is contained in:
parent
573e8d72c7
commit
e977fb0da3
2 changed files with 8 additions and 8 deletions
|
@ -7,14 +7,12 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Low frequency demod/decode commands
|
// Low frequency demod/decode commands
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include "lfdemod.h"
|
#include "lfdemod.h"
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
//un_comment to allow debug print calls when used not on device
|
//un_comment to allow debug print calls when used not on device
|
||||||
void dummy(char *fmt, ...){}
|
void dummy(char *fmt, ...){}
|
||||||
|
|
||||||
|
|
||||||
#ifndef ON_DEVICE
|
#ifndef ON_DEVICE
|
||||||
# include "ui.h"
|
# include "ui.h"
|
||||||
# include "cmdparser.h"
|
# include "cmdparser.h"
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
#define LFDEMOD_H__
|
#define LFDEMOD_H__
|
||||||
#include <stdint.h> // for uint_32+
|
#include <stdint.h> // for uint_32+
|
||||||
#include <stdbool.h> // for bool
|
#include <stdbool.h> // for bool
|
||||||
|
#include <string.h> // for strcmp
|
||||||
|
#include <stdlib.h> // for
|
||||||
|
|
||||||
//generic
|
//generic
|
||||||
uint8_t justNoise(uint8_t *bits, size_t size);
|
uint8_t justNoise(uint8_t *bits, size_t size);
|
||||||
|
|
Loading…
Reference in a new issue