Merged in corvusvcorax/librepilot/LP-490_insgps13state_mag_fixes (pull request #398)
[librepilot.git] / flight / libraries / optypes.c
blob3b2c7b728ef403ce6e78b47af20ad74e59ed755f
1 /**
2 ******************************************************************************
4 * @file optypes.c
5 * @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
6 * @brief OP Generic data type library
7 * --
8 * @see The GNU Public License (GPL) Version 3
10 *****************************************************************************/
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 3 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <optypes.h>
29 const Color_t Color_Off = COLOR_OFF;
30 const Color_t Color_Black = COLOR_BLACK;
31 const Color_t Color_Red = COLOR_RED;
32 const Color_t Color_Lime = COLOR_LIME;
33 const Color_t Color_Blue = COLOR_BLUE;
34 const Color_t Color_Yellow = COLOR_YELLOW;
35 const Color_t Color_Cian = COLOR_CIAN;
36 const Color_t Color_Magenta = COLOR_MAGENTA;
37 const Color_t Color_Navy = COLOR_NAVY;
38 const Color_t Color_Green = COLOR_GREEN;
39 const Color_t Color_Purple = COLOR_PURPLE;
40 const Color_t Color_Teal = COLOR_TEAL;
41 const Color_t Color_Orange = COLOR_ORANGE;
42 const Color_t Color_White = COLOR_WHITE;