2014-01-16 07:39:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
|
|
|
|
*
|
2015-02-12 16:08:04 +01:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-01-16 07:39:33 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-12 16:05:41 +01:00
|
|
|
* @defgroup boards_qemu-i386 qemu-i386
|
|
|
|
* @ingroup boards
|
|
|
|
* @brief Dummy board to run x86 port in QEMU
|
2014-01-16 07:39:33 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific defines for qemu-i386.
|
|
|
|
*
|
|
|
|
* @author René Kijewski <rene.kijewski@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef QEMU_I386_BOARD_H
|
|
|
|
#define QEMU_I386_BOARD_H
|
2014-01-16 07:39:33 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-15 17:11:47 +01:00
|
|
|
/**
|
|
|
|
* @brief Serial port configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2014-01-16 07:39:33 +01:00
|
|
|
#define UART_PORT (COM1_PORT) /* IO port to use for UART */
|
|
|
|
#define UART_IRQ (COM1_IRQ) /* IRQ line to use for UART */
|
2016-03-15 17:11:47 +01:00
|
|
|
/** @} */
|
2014-01-16 07:39:33 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-16 07:39:33 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|