Skip to content

Commit

Permalink
Prepare libnfc 1.6.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
neomilium committed Mar 1, 2012
1 parent 03d185b commit 3eba0e9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# General init

# /!\ Don't forget to update 'CMakeLists.txt' too /!\
AC_INIT(libnfc, 1.6.0, [email protected])
AC_INIT(libnfc, 1.6.0-rc1, [email protected])

AC_CONFIG_MACRO_DIR([m4])

Expand Down
11 changes: 10 additions & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
SET(EXAMPLES-SOURCES nfc-anticol nfc-dep-initiator nfc-dep-target nfc-emulate-forum-tag2 nfc-emulate-tag nfc-emulate-uid nfc-poll nfc-relay)
SET(EXAMPLES-SOURCES
nfc-anticol
nfc-dep-initiator
nfc-dep-target
nfc-emulate-forum-tag2
nfc-emulate-tag
nfc-emulate-uid
nfc-poll
nfc-relay
)

INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../libnfc)

Expand Down
11 changes: 10 additions & 1 deletion utils/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
SET(UTILS-SOURCES nfc-emulate-forum-tag4 nfc-list nfc-relay-picc nfc-mfclassic nfc-mfultralight)
SET(UTILS-SOURCES
nfc-emulate-forum-tag4
nfc-list
nfc-mfclassic
nfc-mfsetuid
nfc-mfultralight
nfc-probe
nfc-read-forum-tag3
nfc-relay-picc
)

ADD_LIBRARY(nfcutils STATIC
nfc-utils.c
Expand Down
18 changes: 0 additions & 18 deletions utils/nfc-mfclassic.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,24 +410,6 @@ write_card (int write_block_zero)
return true;
}

static void
mifare_classic_extract_payload (const char *abDump, char *pbPayload)
{
uint8_t uiSectorIndex;
uint8_t uiBlockIndex;
size_t szDumpOffset;
size_t szPayloadIndex = 0;

for (uiSectorIndex = 1; uiSectorIndex < 16; uiSectorIndex++) {
for (uiBlockIndex = 0; uiBlockIndex < 3; uiBlockIndex++) {
szDumpOffset = uiSectorIndex * 16 * 4 + uiBlockIndex * 16;
// for(uint8_t uiByteIndex=0; uiByteIndex<16; uiByteIndex++) printf("%02x ", abDump[szPayloadIndex+uiByteIndex]);
memcpy (pbPayload + szPayloadIndex, abDump + szDumpOffset, 16);
szPayloadIndex += 16;
}
}
}

typedef enum {
ACTION_READ,
ACTION_WRITE,
Expand Down

0 comments on commit 3eba0e9

Please sign in to comment.