mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-14 16:57:22 +00:00
OFW PR 2616: Picopass: remove spaces in CSN
by bettse
This commit is contained in:
parent
f967e75819
commit
6119d6e102
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ void picopass_scene_read_card_success_on_enter(void* context) {
|
|||
uint8_t csn[PICOPASS_BLOCK_LEN] = {0};
|
||||
memcpy(csn, AA1[PICOPASS_CSN_BLOCK_INDEX].data, PICOPASS_BLOCK_LEN);
|
||||
for(uint8_t i = 0; i < PICOPASS_BLOCK_LEN; i++) {
|
||||
furi_string_cat_printf(csn_str, "%02X ", csn[i]);
|
||||
furi_string_cat_printf(csn_str, "%02X", csn[i]);
|
||||
}
|
||||
|
||||
bool no_key = picopass_is_memset(pacs->key, 0x00, PICOPASS_BLOCK_LEN);
|
||||
|
|
Loading…
Reference in a new issue