[FL-1920] Fix NTAG emulation (#776)

* mifare ultralight: fix read signature command
* nfc_worker: read signature before pages
This commit is contained in:
gornekich
2021-10-21 15:46:47 +03:00
committed by GitHub
parent 2751440193
commit af1fd0c46d
2 changed files with 9 additions and 10 deletions

View File

@@ -72,7 +72,7 @@ void mf_ul_parse_fast_read_response(uint8_t* buff, uint8_t start_page, uint8_t e
}
uint16_t mf_ul_prepare_read_signature(uint8_t* dest) {
dest[0] = MF_UL_CHECK_TEARING;
dest[0] = MF_UL_READ_SIG;
dest[1] = 0;
return 2;
}