Merge pull request #80 from mactcp/AppleHDSCSetup

Correct == to = for verify with bytchk of 3
This commit is contained in:
Eric Helgeson 2022-03-31 13:10:48 -05:00 committed by GitHub
commit 30eccd413e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1164,7 +1164,7 @@ byte onVerifyCommand(byte flags, uint32_t adds, uint32_t len)
if (bytchk != 0) {
if (bytchk == 3) {
// Data-Out buffer is single logical block for repeated verification.
len == m_img->m_blocksize;
len = m_img->m_blocksize;
}
LED_ON();
verifyDataPhaseSD(adds, len);