mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07: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) {
|
void Ring_BEE_ONCE(uint16_t music_note) {
|
||||||
BEE_ON();
|
BEE_ON();
|
||||||
|
|
|
@ -26,9 +26,7 @@
|
||||||
* May 2005
|
* May 2005
|
||||||
*/
|
*/
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "desfire_crypto_disabled.h"
|
||||||
#include "desfire_crypto.h"
|
|
||||||
|
|
||||||
#include "crc32.h"
|
#include "crc32.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "desfire.h"
|
#include "desfire.h"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
// Fonts for the LCD
|
// Fonts for the LCD
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "fonts.h"
|
#include "fonts_disabled.h"
|
||||||
|
|
||||||
const char FONT6x8[97][8] = {
|
const char FONT6x8[97][8] = {
|
||||||
{0x06, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00}, // columns, rows, bytes per char
|
{0x06, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00}, // columns, rows, bytes per char
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
// Routines to support mifare classic sniffer.
|
// Routines to support mifare classic sniffer.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "mifaresniff.h"
|
#include "mifaresniff_disabled.h"
|
||||||
|
|
||||||
#ifndef CheckCrc14A
|
#ifndef CheckCrc14A
|
||||||
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue