Adding Kaypro1 functional support
- Uses USART instead of polling - Supports two way communication (only 3 commands to the keyboard though) - Kaypro sends data as ASCII, which severely limits the handling of modifiers - No release signal is sent, so even faking modifiers is next to impossible outside of Shift and Ctrl - Includes default QWERTY and Colemak layouts - Developed a new buffer macro, which will become the basic macro module once all the other modules have been ported (much more efficient, as it keeps serial scanning schemes serial, and parallel scanning schemes such as matrix, that already serialized into a sort of buffer for the debouncing evaluation) - This module is quite efficient, and would be able to handle very excessive macro processing in the future. - If more of the keypboard communication protocol is desired, I have a rom dump of the microcontroller (M5L8049)
This commit is contained in:
parent
266b59b851
commit
a017d2f270
6 changed files with 709 additions and 114 deletions
|
@ -43,6 +43,7 @@
|
|||
// See files for full layout descriptions
|
||||
#include "budkeypad.h"
|
||||
#include "heathzenith.h"
|
||||
#include "kaypro1.h"
|
||||
#include "tandy1000.h"
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue