blob: 1730869840434b6ba488176bc9c574f93f3a6fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
test_init()
{
request_DUT "at89c2051dip20" || return 1
return 0
}
test_run()
{
# Check signature
toprammer --read-sig "$tmpfile"
compare_file_to_hex $tmpfile "1E21" || die "signature mismatch"
toprammer --erase
# Check progmem
toprammer --write-prog "$testfile_2k"
toprammer --read-prog "$tmpfile"
compare_files "$testfile_2k" "$tmpfile" || die "progmem mismatch"
}
|