Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2136 | - | 1 | |
2 | /***************************************************************************** |
||
3 | * hier wird Code von den alten OSD-Screens ausgelagert um osd.c zu entkernen |
||
4 | *****************************************************************************/ |
||
5 | |||
6 | //############################################################################ |
||
7 | //# HISTORY osdold_screens.h |
||
8 | //# |
||
9 | //# 01.06.2014 OG * NEU * |
||
10 | //# Auslagerung von Funktionen fuer alte OSD-Screens aus osd.c |
||
11 | //############################################################################ |
||
12 | |||
13 | #ifndef _OSDOLD_SCREENS_H |
||
14 | #define _OSDOLD_SCREENS_H |
||
15 | |||
16 | |||
17 | #include "../main.h" |
||
18 | |||
19 | |||
20 | #ifdef USE_OSD_SCREEN_OLD |
||
21 | |||
22 | void OSD_Element_AltitudeControl( uint8_t x, uint8_t y ); |
||
23 | void OSD_Element_CareFree( uint8_t x, uint8_t y ); |
||
24 | void OSD_Element_NaviMode( uint8_t x, uint8_t y ); |
||
25 | void OSD_Element_StatusFlags( uint8_t x, uint8_t y ); |
||
26 | |||
27 | |||
28 | void OSD_Screen_OSD0( void ); |
||
29 | void OSD_Screen_OSD1( void ); |
||
30 | void OSD_Screen_OSD2( void ); |
||
31 | |||
32 | |||
33 | #endif // USE_OSD_SCREEN_OLD |
||
34 | |||
35 | #endif // _OSDOLD_SCREENS_H_ |