Error texts for ASC 73 : power calibration and program memory

This commit is contained in:
Thomas Schmitt 2009-01-06 12:25:53 +00:00
parent 6d667880e5
commit aca01b88f3
2 changed files with 15 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2009.01.04.113401"
#define Cdrskin_timestamP "2009.01.06.122534"

View File

@ -1122,6 +1122,20 @@ enum response scsi_error_msg(struct burn_drive *d, unsigned char *sense,
else
break;
return FAIL;
case 0x73:
if (*key == 3 && *ascq == 0)
sprintf(msg, "CD control error");
else if (*key == 3 && *ascq == 2)
sprintf(msg, "Power calibration area is full");
else if (*key == 3 && *ascq == 3)
sprintf(msg, "Power calibration area error");
else if (*key == 3 && *ascq == 4)
sprintf(msg, "Program memory area update failure");
else if (*key == 3 && *ascq == 5)
sprintf(msg, "Program memory area is full");
else
break;
return FAIL;
}
sprintf(msg_data,
"Failure. See mmc3r10g.pdf: Sense Key %X ASC %2.2X ASCQ %2.2X",