source: rtems/bsps/shared/dev/serial/getserialmouseps2.c @ 9bf813c5

Last change on this file since 9bf813c5 was 9bf813c5, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 21:38:43

bsps/shared/: Scripted embedded brains header file clean up

Updates #4625.

  • Property mode set to 100644
File size: 415 bytes
Line 
1/*
2 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#include <rtems/serial_mouse.h>
10
11bool bsp_get_serial_mouse_device(
12  const char **name,
13  const char **type
14)
15{
16  *name = SERIAL_MOUSE_DEVICE_PS2;
17  *type = "ps2";
18
19  return true;
20}
Note: See TracBrowser for help on using the repository browser.