Merge pull request #2921 from Antiklesys/master

Added sc flag detection in sam response
This commit is contained in:
Iceman
2025-07-01 20:17:51 +02:00
committed by GitHub
+4
View File
@@ -244,6 +244,10 @@ static int sam_send_request_iso15(const uint8_t *const request, const uint8_t re
*response_len = sam_rx_buf[5 + 1] + 2;
}
if (sam_rx_buf[5] == 0xBD && sam_rx_buf[4] != 0x00){ //secure channel flag is not 0x00
Dbprintf(_YELLOW_("Secure channel flag set to: ")"%02x", sam_rx_buf[4]);
}
memcpy(response, sam_rx_buf + 5, *response_len);
goto out;