Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
730 | woggle | 1 | /***************************************************************************** |
2 | * Copyright (C) 2009 Peter "woggle" Mack, mac@denich.net * |
||
3 | * * |
||
4 | * see this fine thread on RCLine: * |
||
5 | * http://www.rclineforum.de/forum/thread.php?threadid=226786 * |
||
6 | * * |
||
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 2 of the License. * |
||
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, write to the * |
||
18 | * Free Software Foundation, Inc., * |
||
19 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
20 | * * |
||
21 | *****************************************************************************/ |
||
22 | |||
23 | #ifndef _JETI_H |
||
24 | #define _JETI_H |
||
25 | |||
26 | //***************************************************************************** |
||
27 | // |
||
28 | void JETI_Init (void); |
||
29 | void JETI_DisableTXD (void); |
||
30 | void JETI_EnableTXD (void); |
||
31 | void JETI_putw (uint16_t c); |
||
32 | void JETI_putc (uint8_t c); |
||
33 | void JETI_puts (char *s); |
||
34 | void JETI_puts_p (const char *s); |
||
35 | void JETI_put_start (void); |
||
36 | void JETI_put_stop (void); |
||
37 | |||
38 | void jeti (void); |
||
39 | |||
40 | #endif |