]> git.cryptolib.org Git - avr-crypto-lib.git/blob - serial-tools.c
insereated GPLv3 stub
[avr-crypto-lib.git] / serial-tools.c
1 /* serial-tools.c */
2 /*
3     This file is part of the Crypto-avr-lib/microcrypt-lib.
4     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 /**
20  * 
21  * Author:      Daniel Otte
22  * Date:                16.05.2006
23  * 
24  * This tools should help to parse some input. 
25  * 
26  */
27
28 #include "config.h"
29 #include "uart.h"
30 #include <string.h>
31 #include <stdint.h>
32
33 int getnextwordn(char *s, int n){ /* words are seperated by spaces */
34         char c = ' ';
35         while ((c=uart_getc()) == ' ')
36                 ;
37         *s++ = c;
38         while (n && (*s++=uart_getc())!=' ')
39                 ;
40         *(s-1) = '\0';
41         return n;
42 }
43
44
45 void readhex2buffer(void* buffer, int n){
46         char c;
47         uint8_t i;
48         
49 //      DEBUG_S("\r\nDBG: n="); DEBUG_B(n&0xff); DEBUG_S("\r\n");
50         for(i=0; i<n; ++i){
51                 c = uart_getc();
52                 if ('0'<= c && '9'>=c){
53                         ((uint8_t*)buffer)[i] = c - '0';
54                 } else {
55                         c &= ~('A' ^ 'a'); /* make all uppercase */ 
56                         if ('A'<= c && 'F'>=c){
57                                 ((uint8_t*)buffer)[i] = c - 'A' + 10;
58                         } else {
59                                 /* oh shit, wrong char */
60                         }
61                 }
62                 
63                 ((uint8_t*)buffer)[i] <<= 4;
64                 
65                 c = uart_getc();
66                 if ('0'<= c && '9'>=c){
67                         ((uint8_t*)buffer)[i] |= c - '0';
68                 } else {
69                         c &= ~('A' ^ 'a'); /* make all uppercase */ 
70                         if ('A'<= c && 'F'>=c){
71                                 ((uint8_t*)buffer)[i] |= c - 'A' + 10;
72                         } else {
73                                 /* oh shit, wrong char */
74                         }
75                 }
76         } /* for i=0 .. n */
77 }
78
79 void uart_putptr(void* p){
80         uart_hexdump((void*) &p,2);
81 }
82