You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* wip_protocol_refresh: (38 commits)
CI for releases
changelog
build_firmware.yml: fetch depth=0 to be able to build proper version strings
Deduce APP_FW_VER from git tag
bump app version
style
colors
Increase initial button wakeup from 4 to 8 seconds
Adding MIFARE Ultralight reading, wip
hf14a_raw: use @expect_response and fix tests
Fix shadow mode not being preserved. Breaking change: nfc_tag_mf1_write_mode_t has one new mode SHADOW_REQ. Client can set SHADOW or SHADOW_REQ, internally it will be transformed to SHADOW_REQ. When it's time to save data, if SHADOW_REQ, the fw will change it to SHADOW and still allow to save the data before acting as shadow. Breaking: when client reads back MF1 write mode just after settings SHADOW and before saving config, it will receive SHADOW_REQ and must be ready to handle this new enum value.
MF1_DETECT_SUPPORT: remove redundant data
Breaking change: DATA_CMD_GET_DEVICE_MODEL to match chameleon_device_type_t
hw 14a raw: closer to pm3 syntax, removed bit_frame,...
use field LED also in reader mode
fix changelog
new tag_specific_type_t enum, new slotConfig struct. FW will take care of existing slots. Disruptive changes: see below
Implemented hf 14a raw
Fixed initialization bugs and added raw command implementation functions.
Update the table of MFC attack support levels.
...
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,34 @@ All notable changes to this project will be documented in this file.
3
3
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...
4
4
5
5
## [unreleased][unreleased]
6
-
- Added `hf settings blepair` command to get and set ble pairing enable state, and default disable ble pair. (@xianglin1998)
6
+
7
+
## [v2.0.0][2023-09-26]
8
+
- Changed APP_FW_VER now deduced from git tag vx.y.z (@doegox)
9
+
- Changed initial button wakeup from 4 to 8 seconds (@aramova)
10
+
- Added MIFARE Ultralight reading features (@FlUxIuS & @doegox)
11
+
- Fixed MF1 write mode SHADOW was not preserved properly (@doegox)
12
+
- Changed field LED now active also in reader mode to indicate that reader is powering the field (@doegox)
13
+
- Changed slot enabled logic: now we have separate enabled_hf and enabled_lf, changed GET_ENABLED_SLOTS and SET_SLOT_ENABLE (@doegox)
14
+
- Changed tag type enum to be ready for new types, changed stored slotConfig and GET_SLOT_INFO (@doegox)
15
+
- Added HF14A_RAW and its support in `hf 14a raw` (@xianglin1998)
16
+
- Removed MF1_DETECT_DARKSIDE (@doegox)
17
+
- Added MF1_STATIC_NESTED_ACQUIRE and its support in `hf mf nested` (@xianglin1998)
Copy file name to clipboardExpand all lines: docs/development.md
+4
Original file line number
Diff line number
Diff line change
@@ -345,3 +345,7 @@ Limitations:
345
345
346
346
* SWO pin is shared with... SWO so when e.g. reflashing the device, garbage may appear on the monitoring terminal.
347
347
* SWO pin is also shared with the blue channel of the RGB slot LEDs, so faint blue may appear briefly when logs are sent and LED might not work properly when supposed to be blue.
0 commit comments