-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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. ...
- Loading branch information
Showing
59 changed files
with
3,875 additions
and
2,253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
all: | ||
pdflatex --shell-escape protocol-packet.tex | ||
|
||
clean: | ||
rm *.aux *.log *.pdf |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
\documentclass[border=10pt,png]{standalone} | ||
\usepackage{bytefield} | ||
\usepackage{xcolor} | ||
|
||
\begin{document} | ||
|
||
\definecolor{lightcyan}{rgb}{0.85,1,1} | ||
\definecolor{lightgreen}{rgb}{0.85,1,0.85} | ||
\definecolor{lightred}{rgb}{1,0.85,0.85} | ||
\begin{bytefield}[bitwidth=1.1em]{32} | ||
\bitbox{8}[bgcolor=lightcyan]{SOF} & | ||
\bitbox{8}[bgcolor=lightcyan]{LRC1} & | ||
\bitbox{16}[bgcolor=lightgreen]{CMD} \\ | ||
\bitbox{16}[bgcolor=lightgreen]{STATUS} & | ||
\bitbox{16}[bgcolor=lightgreen]{LEN} \\ | ||
\bitbox{8}[bgcolor=lightgreen]{LRC2} & | ||
\bitbox[tlr]{24}[bgcolor=lightred]{} \\ | ||
\wordbox[lr]{1}[bgcolor=lightred]{DATA} \\ | ||
\wordbox[lr]{1}[bgcolor=lightred]{$\cdots$} \\ | ||
\bitbox[blr]{24}[bgcolor=lightred]{} & | ||
\bitbox{8}[bgcolor=lightred]{LRC3} | ||
\end{bytefield} | ||
|
||
\end{document} |
Oops, something went wrong.