mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
text
This commit is contained in:
parent
26a3a0cd3a
commit
0d5e76a9ca
2 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,8 @@ 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...
|
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]
|
## [unreleased][unreleased]
|
||||||
|
- Added trace of sniffed SEOS traffic between reader and card (@iceman1001)
|
||||||
|
- Change `hf seos list` - print crc and annotate better (@iceman1001)
|
||||||
- Added troubleshooting entry - ARM architecture error (@francis2054)
|
- Added troubleshooting entry - ARM architecture error (@francis2054)
|
||||||
- Fixed `lf pyramid sim` - wrong parameter handling (@iceman1001)
|
- Fixed `lf pyramid sim` - wrong parameter handling (@iceman1001)
|
||||||
- Fixed bootloader - Ignore jitters when pressing the button (@wh201906)
|
- Fixed bootloader - Ignore jitters when pressing the button (@wh201906)
|
||||||
|
|
|
@ -339,10 +339,10 @@ void Flashmem_print_status(void) {
|
||||||
Dbprintf(" Baudrate................ " _GREEN_("%d MHz"), FLASHMEM_SPIBAUDRATE / 1000000);
|
Dbprintf(" Baudrate................ " _GREEN_("%d MHz"), FLASHMEM_SPIBAUDRATE / 1000000);
|
||||||
|
|
||||||
if (!FlashInit()) {
|
if (!FlashInit()) {
|
||||||
DbpString(" Init.................... " _RED_("FAILED"));
|
DbpString(" Init.................... " _RED_("failed"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
DbpString(" Init.................... " _GREEN_("OK"));
|
DbpString(" Init.................... " _GREEN_("ok"));
|
||||||
|
|
||||||
// NOTE: It would likely be more useful to use JDEC ID command 9F,
|
// NOTE: It would likely be more useful to use JDEC ID command 9F,
|
||||||
// as it provides a third byte indicative of capacity.
|
// as it provides a third byte indicative of capacity.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue