mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
Continue threshold searching from the last searched value or the current configured value
(cherry picked from commit f3aa7b2)
This commit is contained in:
@@ -28,9 +28,8 @@ static uint8_t Thresholds[(CODEC_THRESHOLD_CALIBRATE_MAX - CODEC_THRESHOLD_CALIB
|
||||
|
||||
void Sniff14443AAppInit(void){
|
||||
SniffState = STATE_REQA;
|
||||
|
||||
tmp_th = CODEC_THRESHOLD_CALIBRATE_MIN;
|
||||
CodecThresholdSet(tmp_th);
|
||||
// Get current threshold and continue searching from here
|
||||
tmp_th = GlobalSettings.ActiveSettingPtr->ReaderThreshold;
|
||||
}
|
||||
|
||||
void Sniff14443AAppReset(void){
|
||||
@@ -56,6 +55,7 @@ INLINE void reset2REQA(void){
|
||||
tmp_th = CodecThresholdIncrement();
|
||||
} else{
|
||||
// mark finish
|
||||
CommandLinePendingTaskFinished(COMMAND_INFO_FALSE, NULL);
|
||||
}
|
||||
}
|
||||
uint16_t Sniff14443AAppProcess(uint8_t* Buffer, uint16_t BitCount){
|
||||
@@ -145,10 +145,14 @@ uint16_t Sniff14443AAppProcess(uint8_t* Buffer, uint16_t BitCount){
|
||||
LED_PORT.OUTSET = LED_RED;
|
||||
Thresholds[(tmp_th - CODEC_THRESHOLD_CALIBRATE_MIN) / CODEC_THRESHOLD_CALIBRATE_STEPS] += 1;
|
||||
CommandLinePendingTaskFinished(COMMAND_INFO_OK_WITH_TEXT_ID, NULL);
|
||||
// Send this threshold to terminal
|
||||
char tmpBuf[10];
|
||||
snprintf(tmpBuf, 10, "%4" PRIu16 ": ", tmp_th);
|
||||
TerminalSendString(tmpBuf);
|
||||
|
||||
// Save value to EEPROM
|
||||
SETTING_UPDATE(GlobalSettings.ActiveSettingPtr->ReaderThreshold);
|
||||
|
||||
Sniff14443AAppReset();
|
||||
} else {
|
||||
// UID not complete, goto ANTICOLLI
|
||||
|
||||
Reference in New Issue
Block a user