Minor iclass sam comms tweaks

1- Removed timeout on client side to allow the sam to be slow in responding
2- Increased SIM_WAIT_DELAY to allow for bigger sam responses
This commit is contained in:
Antiklesys 2025-06-12 19:42:56 +08:00
commit 0378d91595
3 changed files with 4 additions and 7 deletions

View file

@ -279,7 +279,7 @@ int sam_get_version(bool info) {
if (g_dbglevel >= DBG_INFO || info) {
DbpString(_BLUE_("-- SAM Information --"));
Dbprintf(_YELLOW_("Firmware version: ")"%X.%X", sam_version_an[2], sam_version_an[3]);
Dbprintf(_YELLOW_("Firmware ID : "));
Dbprintf(_YELLOW_("Firmware ID: "));
Dbhexdump(sam_build_an[1], sam_build_an + 2, false);
}
goto out;
@ -348,7 +348,7 @@ int sam_get_serial_number(void) {
goto error;
}
Dbprintf(_YELLOW_("Sam Serial Number: "));
Dbprintf(_YELLOW_("Serial Number: "));
Dbhexdump(sam_response_an[1],sam_serial_an, false);
goto out;