Line No. | Rev | Author | Line |
---|---|---|---|
1 | 6 | kaklik | /*! \file input.h \brief User-Input Functions. */ |
2 | //***************************************************************************** |
||
3 | // |
||
4 | // File Name : 'input.h' |
||
5 | // Title : User-Input Functions |
||
6 | // Author : Pascal Stang - Copyright (C) 2003 |
||
7 | // Created : 2003.09.11 |
||
8 | // Revised : 2003.09.11 |
||
9 | // Version : 0.1 |
||
10 | // Target MCU : Atmel AVR series |
||
11 | // Editor Tabs : 4 |
||
12 | // |
||
13 | // This code is distributed under the GNU Public License |
||
14 | // which can be found at http://www.gnu.org/licenses/gpl.txt |
||
15 | // |
||
16 | //***************************************************************************** |
||
17 | |||
18 | #ifndef INPUT_H |
||
19 | #define INPUT_H |
||
20 | |||
21 | // functions |
||
22 | u08 inputString(u08 termChar, u08 termLen, u08* data); |
||
23 | u08 asciiHexToByte(u08* string); |
||
24 | u08 asciiHexToNibble(u08 character); |
||
25 | |||
26 | #endif |
Powered by WebSVN v2.8.3