From 0cd6e950b0d2b62c243141ca82a7d1cb89038d1f Mon Sep 17 00:00:00 2001 From: jakkpotts Date: Sun, 20 Oct 2024 02:47:55 -0700 Subject: [PATCH 1/2] Fixed syntax error in flags declaration in hf_young.c --- armsrc/Standalone/hf_young.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/Standalone/hf_young.c b/armsrc/Standalone/hf_young.c index a887c2bb5..1356e2954 100644 --- a/armsrc/Standalone/hf_young.c +++ b/armsrc/Standalone/hf_young.c @@ -236,7 +236,7 @@ void RunMod(void) { int button_pressed = BUTTON_HELD(1000); if (button_pressed == BUTTON_NO_CLICK) { // No button action, proceed with sim - uint16_t flags = 0 + uint16_t flags = 0; FLAG_SET_UID_IN_DATA(flags, 4); uint8_t data[PM3_CMD_DATA_SIZE] = {0}; // in case there is a read command received we shouldn't break From 177be842bd82ee365ad7b5856d10b6d9a018b283 Mon Sep 17 00:00:00 2001 From: jakkpotts Date: Sun, 20 Oct 2024 02:51:53 -0700 Subject: [PATCH 2/2] Added changelog entry for fixing syntax on hf_young --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 447280308..b77839ee8 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_young.c' - flags declaration was missing a semicolon (@jakkpotts) - Changed `hf mf sim` - add option to allow key b to be used even if readable (@doegox) - Changed `data num` - outputed binary strings are now properly zero padded (@iceman1001) - Changed `hf iclass info` - now tries default keys and decode if legacy (@iceman1001)