rename util_hidsio to hidsio

This commit is contained in:
Jakub Kramarz 2025-01-27 10:30:10 +01:00
commit 5750d47ba3
6 changed files with 7 additions and 7 deletions

View file

@ -413,6 +413,7 @@ set (TARGET_SOURCES
${PM3_ROOT}/client/src/fileutils.c ${PM3_ROOT}/client/src/fileutils.c
${PM3_ROOT}/client/src/flash.c ${PM3_ROOT}/client/src/flash.c
${PM3_ROOT}/client/src/graph.c ${PM3_ROOT}/client/src/graph.c
${PM3_ROOT}/client/src/hidsio.c
${PM3_ROOT}/client/src/iso4217.c ${PM3_ROOT}/client/src/iso4217.c
${PM3_ROOT}/client/src/jansson_path.c ${PM3_ROOT}/client/src/jansson_path.c
${PM3_ROOT}/client/src/lua_bitlib.c ${PM3_ROOT}/client/src/lua_bitlib.c
@ -425,7 +426,6 @@ set (TARGET_SOURCES
${PM3_ROOT}/client/src/scripting.c ${PM3_ROOT}/client/src/scripting.c
${PM3_ROOT}/client/src/ui.c ${PM3_ROOT}/client/src/ui.c
${PM3_ROOT}/client/src/util.c ${PM3_ROOT}/client/src/util.c
${PM3_ROOT}/client/src/util_hidsio.c
${PM3_ROOT}/client/src/wiegand_formats.c ${PM3_ROOT}/client/src/wiegand_formats.c
${PM3_ROOT}/client/src/wiegand_formatutils.c ${PM3_ROOT}/client/src/wiegand_formatutils.c
${CMAKE_BINARY_DIR}/version_pm3.c ${CMAKE_BINARY_DIR}/version_pm3.c

View file

@ -723,6 +723,7 @@ SRCS = mifare/aiddesfire.c \
flash.c \ flash.c \
generator.c \ generator.c \
graph.c \ graph.c \
hidsio.c \
jansson_path.c \ jansson_path.c \
iso4217.c \ iso4217.c \
iso7816/apduinfo.c \ iso7816/apduinfo.c \
@ -759,7 +760,6 @@ SRCS = mifare/aiddesfire.c \
scripting.c \ scripting.c \
ui.c \ ui.c \
util.c \ util.c \
util_hidsio.c \
version_pm3.c \ version_pm3.c \
wiegand_formats.c \ wiegand_formats.c \
wiegand_formatutils.c wiegand_formatutils.c

View file

@ -42,7 +42,7 @@
#include "generator.h" #include "generator.h"
#include "cmdhf14b.h" #include "cmdhf14b.h"
#include "cmdhw.h" #include "cmdhw.h"
#include "util_hidsio.h" #include "hidsio.h"
#define NUM_CSNS 9 #define NUM_CSNS 9

View file

@ -38,7 +38,7 @@
#include "crypto/libpcrypto.h" // AES decrypt #include "crypto/libpcrypto.h" // AES decrypt
#include "commonutil.h" // get_sw #include "commonutil.h" // get_sw
#include "protocols.h" // ISO7816 APDU return codes #include "protocols.h" // ISO7816 APDU return codes
#include "util_hidsio.h" #include "hidsio.h"
static uint8_t zeros[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static uint8_t zeros[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};

View file

@ -16,7 +16,7 @@
// HID Global SIO utilities // HID Global SIO utilities
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#include "commonutil.h" #include "commonutil.h"
#include "util_hidsio.h" #include "hidsio.h"
// structure and database for uid -> tagtype lookups // structure and database for uid -> tagtype lookups
typedef struct { typedef struct {

View file

@ -15,8 +15,8 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// HID Global SIO utilities // HID Global SIO utilities
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifndef __UTIL_HIDSIO_H_ #ifndef __HIDSIO_H_
#define __UTIL_HIDSIO_H_ #define __HIDSIO_H_
#include "common.h" #include "common.h"
#include "stdint.h" #include "stdint.h"