Rev 453 | Rev 514 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 389 | cascade | 1 | /**************************************************************************** |
| 2 | * Copyright (C) 2009 by Claas Anders "CaScAdE" Rathje * |
||
| 3 | * admiralcascade@gmail.com * |
||
| 4 | * Project-URL: http://www.mylifesucks.de/oss/c-osd/ * |
||
| 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 2 of the License. * |
||
| 9 | * * |
||
| 10 | * This program is distributed in the hope that it will be useful, * |
||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
| 13 | * GNU General Public License for more details. * |
||
| 14 | * * |
||
| 15 | * You should have received a copy of the GNU General Public License * |
||
| 16 | * along with this program; if not, write to the * |
||
| 17 | * Free Software Foundation, Inc., * |
||
| 18 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
| 19 | ****************************************************************************/ |
||
| 20 | |||
| 21 | #ifndef ALLCHARSDEBUG |
||
| 22 | #define ALLCHARSDEBUG = 0 |
||
| 23 | #endif |
||
| 24 | |||
| 25 | #ifndef WRITECHARS |
||
| 26 | #define WRITECHARS = 0 |
||
| 27 | #endif |
||
| 28 | |||
| 29 | /* ########################################################################## |
||
| 30 | * compass stuff |
||
| 31 | * ##########################################################################*/ |
||
| 32 | |||
| 33 | /** |
||
| 34 | * convert the <heading> gotton from NC into an index |
||
| 35 | */ |
||
| 36 | uint8_t heading_conv(uint16_t); |
||
| 37 | |||
| 38 | /** |
||
| 39 | * convert the <heading> gotton from NC into a more |
||
| 40 | * precise index |
||
| 41 | */ |
||
| 42 | uint8_t heading_fine_conv(uint16_t ); |
||
| 43 | |||
| 44 | /** |
||
| 45 | * draw a compass rose at <x>/<y> for <heading> |
||
| 46 | */ |
||
| 47 | void draw_compass(uint8_t, uint8_t, uint16_t); |
||
| 48 | |||
| 49 | /* ########################################################################## |
||
| 50 | * battery index |
||
| 51 | * ##########################################################################*/ |
||
| 52 | /** |
||
| 53 | * draw a battery symbol at <x>/<y> according to <voltage> |
||
| 54 | */ |
||
| 453 | cascade | 55 | void draw_battery(uint8_t, uint8_t, uint8_t, uint8_t, uint8_t); |
| 389 | cascade | 56 | |
| 57 | /* ########################################################################## |
||
| 58 | * variometer |
||
| 59 | * ##########################################################################*/ |
||
| 60 | /** |
||
| 61 | * draw variometer arrows at <x>/<y> according to <variometer> |
||
| 62 | */ |
||
| 63 | void draw_variometer(uint8_t, uint8_t, int16_t); |
||
| 64 | |||
| 65 | /** |
||
| 66 | * draw a bigger vario with middle at <x>/<y> acording to <variometer> |
||
| 67 | */ |
||
| 68 | void draw_big_variometer(uint8_t, uint8_t, int16_t); |
||
| 69 | |||
| 70 | /* ########################################################################## |
||
| 71 | * artificial horizon |
||
| 72 | * ##########################################################################*/ |
||
| 73 | /** |
||
| 74 | * draw roll und nick indicators (could be enhanced to full artificial horizon) |
||
| 75 | * from line <firstline> to <listlines> for given <nick> and <roll> values |
||
| 76 | */ |
||
| 77 | void draw_artificial_horizon(uint8_t, uint8_t, int16_t, int16_t); |