Skip to content

Commit

Permalink
Update Keyboard and Mouse unit information to reflect HID changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ultibohub committed Nov 1, 2022
1 parent 3531e15 commit ac23f6f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion source/__version.id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.239
2.5.241
6 changes: 3 additions & 3 deletions source/rtl/ultibo/core/globalconst.pas
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ interface
{Global constants}
const
{Version constants}
ULTIBO_RELEASE_DATE = '1 November 2022';
ULTIBO_RELEASE_DATE = '2 November 2022';
ULTIBO_RELEASE_NAME = 'Beetroot';
ULTIBO_RELEASE_VERSION = '2.5.239';
ULTIBO_RELEASE_VERSION = '2.5.241';
ULTIBO_RELEASE_VERSION_MAJOR = 2;
ULTIBO_RELEASE_VERSION_MINOR = 5;
ULTIBO_RELEASE_VERSION_REVISION = 239;
ULTIBO_RELEASE_VERSION_REVISION = 241;

FPC_COMPILER_VERSION = {$I %FPCVERSION%}; {The version of FPC used to compile the RTL}

Expand Down
8 changes: 5 additions & 3 deletions source/rtl/ultibo/core/keyboard.pas
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,17 @@
Keyboard Devices
================
This unit provides both the Keyboard device interface and the generic USB HID keyboard driver.
This unit provides both the Keyboard device interface and a generic USB keyboard driver.
The keyboard unit also provides the STDIN interface for the Run Time Library (RTL)
USB Keyboard Devices
====================
This driver currently uses HID Boot Protocol only and could be redesigned in future to use
the HID Report Protocol instead to allow for greater language support etc.
The USB keyboard driver in this unit uses HID Boot Protocol only and has been replaced by
the HIDKeyboard unit which provides complete HID Report Protocol support for USB keyboards.
This driver will be moved to a seperate unit and retained for backwards compatibility only.
}

Expand Down
7 changes: 6 additions & 1 deletion source/rtl/ultibo/core/mouse.pas
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,16 @@
Mouse Devices
=============
This unit provides both the Mouse device interface and the generic USB HID mouse driver.
This unit provides both the Mouse device interface and a generic USB mouse driver.
USB Mouse Devices
=================
The USB mouse driver in this unit uses HID Boot Protocol only and has been replaced by
the HIDMouse unit which provides complete HID Report Protocol support for USB mice.
This driver will be moved to a seperate unit and retained for backwards compatibility only.
}

{$mode delphi} {Default to Delphi compatible syntax}
Expand Down

0 comments on commit ac23f6f

Please sign in to comment.