From aa3fe711afa010aa0ea1246d6860afdc8dadb177 Mon Sep 17 00:00:00 2001 From: Augusto Zanellato Date: Tue, 17 Oct 2023 23:33:19 +0200 Subject: [PATCH] Fix hf 14a raw always raising AttributeError --- CHANGELOG.md | 1 + software/script/chameleon_cli_unit.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e89069..45813d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log... ## [unreleased][unreleased] + - Fixed `hf 14a raw` command raising `AttributeError` (@augustozanellato) - Fixed ATS handling in tags that NAK RATS (@augustozanellato) - Changed battery level curves based on experimental measures (@spp2000) - Added multithreading on Nested and StaticNested (@xianglin1998) diff --git a/software/script/chameleon_cli_unit.py b/software/script/chameleon_cli_unit.py index 3c7f795..26476ff 100644 --- a/software/script/chameleon_cli_unit.py +++ b/software/script/chameleon_cli_unit.py @@ -2046,7 +2046,7 @@ examples/notes: def on_exec(self, args: argparse.Namespace): options = { 'activate_rf_field': self.bool_to_bit(args.activate_rf), - 'wait_response': self.bool_to_bit(not args.response), + 'wait_response': self.bool_to_bit(not args.no_response), 'append_crc': self.bool_to_bit(args.crc), 'auto_select': self.bool_to_bit(args.select_tag), 'keep_rf_field': self.bool_to_bit(args.keep_rf),