Skip to content

Commit

Permalink
prepare for 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josevcampos committed Jan 7, 2022
1 parent b7b6cf5 commit 1472d42
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ reader.
I do not have as an objective to explain the NFC norms or modulation techniques, there is a multitude of documentation
accessible through Google, I will describe as simply as possible the method that i have used to implement this software.

Currently, detection and decoding for NFC-A (ISO14443A), NFC-B (ISO14443B) and NFC-V (ISO15693) modulation has been implemented.
Currently, detection and decoding for NFC-A (ISO14443A), NFC-B (ISO14443B), NFC-V (ISO15693) and preliminary NFC-F (Felica)
modulation has been implemented.

## Signal processing

Expand Down
6 changes: 3 additions & 3 deletions dat/conf/nfc-lab.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ timeLimit=10000
powerLevelThreshold=0.01

[decoder.nfca]
enabled=false
enabled=true
minimumModulationDeep=0.90
maximumModulationDeep=1.00

[decoder.nfcb]
enabled=false
enabled=true
minimumModulationDeep=0.10
maximumModulationDeep=0.90

Expand All @@ -29,7 +29,7 @@ minimumModulationDeep=0.10
maximumModulationDeep=0.90

[decoder.nfcv]
enabled=false
enabled=true
minimumModulationDeep=0.90
maximumModulationDeep=1.00

Expand Down
4 changes: 2 additions & 2 deletions src/nfc-app/app-qt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ set(PRIVATE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp)

find_package(Qt5 COMPONENTS Core Widgets PrintSupport OpenGL REQUIRED)

#add_executable(nfc-lab WIN32
add_executable(nfc-lab
add_executable(nfc-lab WIN32
#add_executable(nfc-lab
src/main/cpp/main.cpp
src/main/cpp/main.rc
src/main/cpp/QtApplication.cpp
Expand Down
4 changes: 2 additions & 2 deletions src/nfc-lib/lib-rt/rt-lang/src/main/cpp/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

//#define NULL_LOG
//#define STDERR_LOG
#define STDOUT_LOG
//#define FSTREAM_LOG
//#define STDOUT_LOG
#define FSTREAM_LOG

namespace rt {

Expand Down

0 comments on commit 1472d42

Please sign in to comment.