1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-09 20:46:07 +01:00
LibrePilot/flight/PiOS.x86/inc/pios_x86.h
corvus 694f7e7feb OP-85
x86 port of PiOS - including pios_com -  UDP support



git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@905 ebee16cc-31ac-478f-84a7-5cbb03baadba
2010-06-27 14:14:07 +00:00

46 lines
1.3 KiB
C

/**
******************************************************************************
*
* @file x86.h
* @author Corvus Corax Copyright (C) 2010.
* @brief Definitions to run PiOS on x86
* @see The GNU Public License (GPL) Version 2
*
*****************************************************************************/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef PIOS_X86_H
#define PIOS_X86_H
#include <bits/types.h>
typedef __uint16_t uint16_t;
typedef __uint32_t uint32_t;
typedef __uint32_t u32;
typedef __uint8_t uint8_t;
typedef __int16_t int16_t;
typedef __int32_t int32_t;
typedef __int8_t int8_t;
#define FILEINFO FILE*
#endif