4 This file is part of the AVR-Crypto-Lib.
5 Copyright (C) 2008, 2009 Daniel Otte (daniel.otte@rub.de)
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 def read_line(error_msg=true)
26 puts("ERROR: read timeout!\n") if error_msg
32 def readTestVector(param)
40 if (m=/unknown command/.match(lb) || m=/[Ee][Rr]{2}[Oo][Rr]/.match(lb))
47 end while(m=/\*+/.match(lb));
56 end while(m=/\*.*/.match(lb));
58 while(!(m=/Test vectors/.match(lb)))
59 m=/[^:]*:[\s]([A-Za-z0-9_-]*)/.match(lb);
63 return false if lb==nil
70 puts("-> "+fname+"txt");
71 file=File.new(fname+"txt", "w");
75 if (m=/Test\ vectors\ \-\-\ set[\s]+([0-9]+)/.match(lb))
77 print("\nSet "+m[1]+":");
79 if (m=/Set [0-9]*, vector#[\s]*([0-9]+):/.match(lb))
82 if(vector!=0 && vector % $linewidth==0)
85 printf(" %4u", vector);
93 end while(!m=/End of test vectors/.match(lb));
102 Usage: ruby #{$0} port bps nbits stopb command [target_dir] [additional specifier]
107 command=ARGV[4]+"\r";
108 $dir=(ARGV.size>=6)?ARGV[5]:"";
109 param=(ARGV.size>=7)?ARGV[6]:"";
111 puts("\nPort: "+ARGV[0]+ "@"+ARGV[1]+" "+ARGV[2]+"N"+ARGV[3]+"\n");
113 $sp = SerialPort.new(ARGV[0], ARGV[1].to_i, ARGV[2].to_i, ARGV[3].to_i, SerialPort::NONE);
114 $sp.read_timeout=1000; # 1 secound
118 if(readTestVector(param)==false)
119 puts("ERROR: test seems not to be implemented");
123 while(readTestVector(param))