Skip to content

Commit b210677

Browse files
committed
V1.08 preparation for STM32 suuport
1 parent 8164067 commit b210677

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# PS2KeyAdvanced
22
## Arduino PS2 Keyboard FULL keyboard protocol support and full keys to integer coding
3-
**V1.0.7** March 2020 - Add notes for porting to other platforms, tidy ups, add SAMD1
3+
**V1.0.8** November 2020 - Add support for STM32 from user Hiabuto-de
4+
Tested on STM32Duino-Framework and PlatformIO on STM32F103C8T6 and an IBM Model M
5+
6+
V1.0.7 March 2020 - Add notes for porting to other platforms, tidy ups, add SAMD1
47

58
V1.0.6 January 2020 - Fix typos, correct keyboard reset status improve library.properties
69
and additional reduction for easier platform handling
@@ -20,6 +23,7 @@ For other versions that just read the keycodes for all keyboard types or allow y
2023
- Arduino AVR - tested on Uno and Mega 2560 (Users have tested on Teensy 2.0 and Teensy++ 2.0)
2124
- Arduino SAM - tested on DUE
2225
- SAMD1 - Seeeduino Xiao M0+ (tested by user)
26+
- STM32 - STM32Duino-Framework and PlatformIO on STM32F103C8T6 from user Hiabuto-de
2327

2428
See later for porting to other platforms
2529

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=PS2KeyAdvanced
2-
version=1.0.7
2+
version=1.0.8
33
author=Paul Carpenter <[email protected]>
44
maintainer=Paul Carpenter <[email protected]>
55
sentence=PS2 keyboard FULL control and ALL keys processing, as well as LED control.
66
paragraph=Provides ability to convert long key stroke code sequences to a single integer, for all keys ANY Latin keyboard, even multimedia and 24 Function key keyboards.
77
category=Other
88
url=https://github.com/techpaul/PS2KeyAdvanced.git
9-
architectures=avr,sam,samd1
9+
architectures=avr,sam,samd1,stm32
1010
includes=PS2KeyAdvanced.h
1111

src/PS2KeyAdvanced.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Version V1.0.7
1+
/* Version V1.0.8
22
PS2KeyAdvanced.cpp - PS2KeyAdvanced library
33
Copyright (c) 2007 Free Software Foundation. All right reserved.
44
Written by Paul Carpenter, PC Services <[email protected]>
@@ -8,6 +8,8 @@
88
and additional platform handling and some documentation
99
March 2020 Add SAMD1 as recognised support as has been tested by user
1010
Improve different architecture handling
11+
November 2020 Add support for STM32 from user Hiabuto-de
12+
Tested on STM32Duino-Framework and PlatformIO on STM32F103C8T6 and an IBM Model M
1113
1214
IMPORTANT WARNING
1315

src/PS2KeyAdvanced.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Version V1.0.7
1+
/* Version V1.0.8
22
PS2KeyAdvanced.h - PS2KeyAdvanced library
33
Copyright (c) 2007 Free Software Foundation. All right reserved.
44
Written by Paul Carpenter, PC Services <[email protected]>
@@ -8,6 +8,8 @@
88
and additional platform handling and some documentation
99
March 2020 Add SAMD1 as recognised support as has been tested by user
1010
Improve different architecture handling
11+
November 2020 Add support for STM32 from user Hiabuto-de
12+
Tested on STM32Duino-Framework and PlatformIO on STM32F103C8T6 and an IBM Model M
1113
1214
IMPORTANT WARNING
1315

src/PS2KeyCode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Version V1.0.7
1+
/* Version V1.0.8
22
PS2KeyCode.h - PS2KeyAdvanced library Internal actual PS2 key code sequences
33
Copyright (c) 2007 Free Software Foundation. All right reserved.
44
Written by Paul Carpenter, PC Services <[email protected]>

src/PS2KeyTable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Version V1.0.7
1+
/* Version V1.0.8
22
PS2KeyTable.h - PS2KeyAdvanced library keycode values to return values
33
Copyright (c) 2007 Free Software Foundation. All right reserved.
44
Written by Paul Carpenter, PC Services <[email protected]>

0 commit comments

Comments
 (0)