mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-27 10:29:18 +08:00
cppchecker missing includes
This commit is contained in:
parent
a8aadb2751
commit
b63495cce7
4 changed files with 4 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
#include "buzzer.h"
|
||||
#include "buzzer_disabled.h"
|
||||
|
||||
void Ring_BEE_ONCE(uint16_t music_note) {
|
||||
BEE_ON();
|
||||
|
|
|
@ -26,9 +26,7 @@
|
|||
* May 2005
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "desfire_crypto.h"
|
||||
|
||||
#include "desfire_crypto_disabled.h"
|
||||
#include "crc32.h"
|
||||
#include "printf.h"
|
||||
#include "desfire.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
// Fonts for the LCD
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include "fonts.h"
|
||||
#include "fonts_disabled.h"
|
||||
|
||||
const char FONT6x8[97][8] = {
|
||||
{0x06, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00}, // columns, rows, bytes per char
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
// Routines to support mifare classic sniffer.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include "mifaresniff.h"
|
||||
#include "mifaresniff_disabled.h"
|
||||
|
||||
#ifndef CheckCrc14A
|
||||
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
||||
|
|
Loading…
Reference in a new issue