Files
rtems/bsps/shared/dev/serial/getserialmouseps2.c
Sebastian Huber d7d66d7d45 bsps: Move console drivers to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-20 13:08:32 +02:00

27 lines
522 B
C

/*
* Copyright (c) 2013 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Dornierstr. 4
* 82178 Puchheim
* Germany
* <info@embedded-brains.de>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#include <rtems/serial_mouse.h>
bool bsp_get_serial_mouse_device(
const char **name,
const char **type
)
{
*name = SERIAL_MOUSE_DEVICE_PS2;
*type = "ps2";
return true;
}