Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEW: Make the crypto test compatible with ATSHA204A. Eliminate the co… #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,24 +142,6 @@ void atsha_config_test(void)
xil_printf(" Success reading ATSHA204 Config word 0\r\n");
xil_printf(" received: 0x0123\r\n");
}
// checks to verify a manufacturer hard coded value is read correctly
if(FALSE == read_config(&rcv_data[0], 3)) {
xil_printf(" Failure reading ATSHA204 Config word 3\r\n");
xil_printf("\r\n!! Read ATSHA204 Config Test FAILED !!\r\n\n");
return;
}

if((rcv_data[0] != 0xEE) || (rcv_data[1] != 0x55) || (rcv_data[3] != 0x00))
{
xil_printf(" Failure reading ATSHA204 Config word 3\r\n");
xil_printf(" Read was successful, but data did not match:\r\n");
xil_printf(" expected: 0xEE55xx00, received 0x%02X%02Xxx%02X\r\n", rcv_data[0], rcv_data[1], rcv_data[3]);
xil_printf("\r\n!! Read ATSHA204 Config Test FAILED !!\r\n\n");
return;
} else {
xil_printf(" Success reading ATSHA204 Config word 3\r\n");
xil_printf(" received: 0xEE55xx00\r\n");
}

// check to see if the slot configuration was cleared during our
// manufacturing test...
Expand Down