Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2136 | - | 1 | /***************************************************************************** |
2 | * Copyright (C) 2008 Thomas Kaiser, thomas@ft-fanpage.de * |
||
3 | * Copyright (C) 2009 Peter "woggle" Mack, mac@denich.net * |
||
4 | * Copyright (C) 2011 Christian "Cebra" Brandtner, brandtner@brandtner.net * |
||
5 | * Copyright (C) 2011 Harald Bongartz * |
||
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 | * Credits to: * |
||
23 | * Holger Buss & Ingo Busker from mikrokopter.de for the MK project + SVN * |
||
24 | * http://www.mikrokopter.de * |
||
25 | * Gregor "killagreg" Stobrawa for his version of the MK code * |
||
26 | * Thomas Kaiser "thkais" for the original project. See * |
||
27 | * http://www.ft-fanpage.de/mikrokopter/ * |
||
28 | * http://forum.mikrokopter.de/topic-4061-1.html * |
||
29 | * Claas Anders "CaScAdE" Rathje for providing the font and his C-OSD code * |
||
30 | * http://www.mylifesucks.de/oss/c-osd/ * |
||
31 | * Harald Bongartz "HaraldB" for providing his Ideas and Code for usibility* |
||
32 | *****************************************************************************/ |
||
33 | |||
34 | //############################################################################ |
||
35 | //# HISTORY connect.h |
||
36 | //# |
||
37 | //# 10.06.2014 OG |
||
38 | //# - del: Port_USB2CFG_Wi() - jetzt in Wi232.c als Wi232_ConfigPC() |
||
39 | //# |
||
40 | //# 13.04.2014 OG |
||
41 | //# - add: Baud_to_uint32() |
||
42 | //# |
||
43 | //# 10.04.2014 OG |
||
44 | //# - del: Port_FC2CFG_WL() |
||
45 | //# |
||
46 | //# 01.04.2014 OG |
||
47 | //# - add: Port_BLE2Wi() |
||
48 | //# - add: Source-History ergaenzt |
||
49 | //############################################################################ |
||
50 | |||
51 | |||
52 | #ifndef _CONNECT_H |
||
53 | #define _CONNECT_H |
||
54 | |||
55 | void Change_Output(uint8_t UartMode); |
||
56 | |||
57 | void Port_BT2Wi(void); |
||
58 | void Port_BT2FC(void); |
||
59 | void Port_WiFly2Wi( void ); |
||
60 | void Port_FC2CFG_BT(void); |
||
61 | |||
62 | void Port_USB2FC(void); |
||
63 | void Port_USB2Wi(void); |
||
64 | void Port_BLE2Wi( void ); |
||
65 | |||
66 | uint32_t Baud_to_uint32( uint8_t baud ); |
||
67 | |||
68 | #endif |