host interface for pjrc
parent
2b8cd88ab1
commit
9a938eecbd
@ -1,18 +1,35 @@
|
|||||||
SRC += keyboard.c \
|
SRC += host.c \
|
||||||
|
keyboard.c \
|
||||||
command.c \
|
command.c \
|
||||||
layer.c \
|
layer.c \
|
||||||
timer.c \
|
timer.c \
|
||||||
print.c \
|
print.c \
|
||||||
util.c
|
util.c
|
||||||
|
|
||||||
|
|
||||||
# Option modules
|
# Option modules
|
||||||
ifdef MOUSEKEY_ENABLE
|
ifdef MOUSEKEY_ENABLE
|
||||||
SRC += mousekey.c
|
SRC += mousekey.c
|
||||||
|
OPT_DEFS += -DMOUSEKEY_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef PS2_MOUSE_ENABLE
|
ifdef PS2_MOUSE_ENABLE
|
||||||
SRC += ps2.c \
|
SRC += ps2.c \
|
||||||
ps2_mouse.c
|
ps2_mouse.c
|
||||||
|
OPT_DEFS += -DPS2_MOUSE_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifdef USB_EXTRA_ENABLE
|
||||||
|
OPT_DEFS += -DUSB_EXTRA_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifdef USB_NKRO_ENABLE
|
||||||
|
OPT_DEFS += -DUSB_NKRO_ENABLE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
|
||||||
|
OPT_DEFS += -DUSB_MOUSE_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
include $(COMMON_DIR)/Makefile.rules
|
include $(COMMON_DIR)/Makefile.rules
|
||||||
|
@ -0,0 +1,184 @@
|
|||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
#include "usb_keycodes.h"
|
||||||
|
#include "host.h"
|
||||||
|
#include "print.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "util.h"
|
||||||
|
#include "timer.h"
|
||||||
|
#include "layer.h"
|
||||||
|
#include "matrix_skel.h"
|
||||||
|
#include "command.h"
|
||||||
|
|
||||||
|
#ifdef HOST_PJRC
|
||||||
|
# include "jump_bootloader.h"
|
||||||
|
# include "usb_keyboard.h"
|
||||||
|
# ifdef USB_EXTRA_ENABLE
|
||||||
|
# include "usb_extra.h"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
static void help(void);
|
||||||
|
static void switch_layer(uint8_t layer);
|
||||||
|
|
||||||
|
|
||||||
|
uint8_t command_proc(void)
|
||||||
|
{
|
||||||
|
if (!IS_COMMAND())
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
uint8_t processed = 1;
|
||||||
|
bool last_print_enable = print_enable;
|
||||||
|
print_enable = true;
|
||||||
|
switch (keyboard_report->keys[0]) {
|
||||||
|
case KB_H:
|
||||||
|
help();
|
||||||
|
break;
|
||||||
|
case KB_B:
|
||||||
|
#ifdef HOST_PJRC
|
||||||
|
host_clear_keyboard_report();
|
||||||
|
host_send_keyboard_report();
|
||||||
|
print("jump to bootloader...\n");
|
||||||
|
_delay_ms(1000);
|
||||||
|
jump_bootloader(); // not return
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
case KB_D:
|
||||||
|
debug_enable = !debug_enable;
|
||||||
|
if (debug_enable) {
|
||||||
|
last_print_enable = true;
|
||||||
|
print("debug enabled.\n");
|
||||||
|
debug_matrix = true;
|
||||||
|
debug_keyboard = true;
|
||||||
|
debug_mouse = true;
|
||||||
|
} else {
|
||||||
|
print("debug disabled.\n");
|
||||||
|
last_print_enable = false;
|
||||||
|
debug_matrix = false;
|
||||||
|
debug_keyboard = false;
|
||||||
|
debug_mouse = false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KB_X: // debug matrix toggle
|
||||||
|
debug_matrix = !debug_matrix;
|
||||||
|
if (debug_matrix)
|
||||||
|
print("debug matrix enabled.\n");
|
||||||
|
else
|
||||||
|
print("debug matrix disabled.\n");
|
||||||
|
break;
|
||||||
|
case KB_K: // debug keyboard toggle
|
||||||
|
debug_keyboard = !debug_keyboard;
|
||||||
|
if (debug_keyboard)
|
||||||
|
print("debug keyboard enabled.\n");
|
||||||
|
else
|
||||||
|
print("debug keyboard disabled.\n");
|
||||||
|
break;
|
||||||
|
case KB_M: // debug mouse toggle
|
||||||
|
debug_mouse = !debug_mouse;
|
||||||
|
if (debug_mouse)
|
||||||
|
print("debug mouse enabled.\n");
|
||||||
|
else
|
||||||
|
print("debug mouse disabled.\n");
|
||||||
|
break;
|
||||||
|
case KB_V: // print version & information
|
||||||
|
print(STR(DESCRIPTION) "\n");
|
||||||
|
break;
|
||||||
|
case KB_T: // print timer
|
||||||
|
print("timer: "); phex16(timer_count); print("\n");
|
||||||
|
break;
|
||||||
|
case KB_P: // print toggle
|
||||||
|
if (print_enable) {
|
||||||
|
print("print disabled.\n");
|
||||||
|
last_print_enable = false;
|
||||||
|
} else {
|
||||||
|
last_print_enable = true;
|
||||||
|
print("print enabled.\n");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KB_S:
|
||||||
|
#ifdef HOST_PJRC
|
||||||
|
print("UDCON: "); phex(UDCON); print("\n");
|
||||||
|
print("UDIEN: "); phex(UDIEN); print("\n");
|
||||||
|
print("UDINT: "); phex(UDINT); print("\n");
|
||||||
|
print("host_keyboard_leds:"); phex(host_keyboard_leds()); print("\n");
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
#ifdef USB_NKRO_ENABLE
|
||||||
|
case KB_N:
|
||||||
|
keyboard_nkro = !keyboard_nkro;
|
||||||
|
if (keyboard_nkro)
|
||||||
|
print("USB_NKRO: enabled\n");
|
||||||
|
else
|
||||||
|
print("USB_NKRO: disabled\n");
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef USB_EXTRA_ENABLE
|
||||||
|
case KB_ESC:
|
||||||
|
if (suspend && remote_wakeup) {
|
||||||
|
usb_remote_wakeup();
|
||||||
|
} else {
|
||||||
|
usb_extra_system_send(SYSTEM_POWER_DOWN);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
case KB_BSPC:
|
||||||
|
matrix_init();
|
||||||
|
print("clear matrix\n");
|
||||||
|
break;
|
||||||
|
case KB_0:
|
||||||
|
switch_layer(0);
|
||||||
|
break;
|
||||||
|
case KB_1:
|
||||||
|
switch_layer(1);
|
||||||
|
break;
|
||||||
|
case KB_2:
|
||||||
|
switch_layer(2);
|
||||||
|
break;
|
||||||
|
case KB_3:
|
||||||
|
switch_layer(3);
|
||||||
|
break;
|
||||||
|
case KB_4:
|
||||||
|
switch_layer(4);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
processed = 0;
|
||||||
|
}
|
||||||
|
if (processed)
|
||||||
|
_delay_ms(500);
|
||||||
|
print_enable = last_print_enable;
|
||||||
|
return processed;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void help(void)
|
||||||
|
{
|
||||||
|
print("b: jump to bootloader\n");
|
||||||
|
print("d: toggle debug enable\n");
|
||||||
|
print("x: toggle matrix debug\n");
|
||||||
|
print("k: toggle keyboard debug\n");
|
||||||
|
print("m: toggle mouse debug\n");
|
||||||
|
print("p: toggle print enable\n");
|
||||||
|
print("v: print version\n");
|
||||||
|
print("t: print timer count\n");
|
||||||
|
print("s: print status\n");
|
||||||
|
#ifdef USB_NKRO_ENABLE
|
||||||
|
print("n: toggle USB_NKRO\n");
|
||||||
|
#endif
|
||||||
|
print("Backspace: clear matrix\n");
|
||||||
|
print("ESC: power down/wake up\n");
|
||||||
|
print("0: switch to Layer0 \n");
|
||||||
|
print("1: switch to Layer1 \n");
|
||||||
|
print("2: switch to Layer2 \n");
|
||||||
|
print("3: switch to Layer3 \n");
|
||||||
|
print("4: switch to Layer4 \n");
|
||||||
|
}
|
||||||
|
|
||||||
|
static void switch_layer(uint8_t layer)
|
||||||
|
{
|
||||||
|
print("current_layer: "); phex(current_layer); print("\n");
|
||||||
|
print("default_layer: "); phex(default_layer); print("\n");
|
||||||
|
current_layer = layer;
|
||||||
|
default_layer = layer;
|
||||||
|
print("switch to Layer: "); phex(layer); print("\n");
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
#ifndef COMMAND_H
|
||||||
|
#define COMMAND
|
||||||
|
|
||||||
|
uint8_t command_proc(void);
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,9 @@
|
|||||||
|
#include "stdint.h"
|
||||||
|
#include "led.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* HHKB has no LEDs */
|
||||||
|
void led_set(uint8_t usb_led)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,135 @@
|
|||||||
|
#include <stdint.h>
|
||||||
|
#include "usb_keycodes.h"
|
||||||
|
#include "usb_keyboard.h"
|
||||||
|
#include "usb_mouse.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "host.h"
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef USB_NKRO_ENABLE
|
||||||
|
bool keyboard_nkro = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static report_keyboard_t report0;
|
||||||
|
static report_keyboard_t report1;
|
||||||
|
report_keyboard_t *keyboard_report = &report0;
|
||||||
|
report_keyboard_t *keyboard_report_prev = &report1;
|
||||||
|
|
||||||
|
static inline void add_key_byte(uint8_t code);
|
||||||
|
static inline void add_key_bit(uint8_t code);
|
||||||
|
|
||||||
|
|
||||||
|
uint8_t host_keyboard_leds(void)
|
||||||
|
{
|
||||||
|
return usb_keyboard_leds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* keyboard report operations */
|
||||||
|
void host_add_key(uint8_t key)
|
||||||
|
{
|
||||||
|
#ifdef USB_NKRO_ENABLE
|
||||||
|
if (keyboard_nkro) {
|
||||||
|
add_key_bit(key);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
add_key_byte(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_add_mod_bit(uint8_t mod)
|
||||||
|
{
|
||||||
|
keyboard_report->mods |= mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_set_mods(uint8_t mods)
|
||||||
|
{
|
||||||
|
keyboard_report->mods = mods;
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_add_code(uint8_t code)
|
||||||
|
{
|
||||||
|
if (IS_MOD(code)) {
|
||||||
|
host_add_mod_bit(MOD_BIT(code));
|
||||||
|
} else {
|
||||||
|
host_add_key(code);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_swap_keyboard_report(void)
|
||||||
|
{
|
||||||
|
report_keyboard_t *tmp = keyboard_report_prev;
|
||||||
|
keyboard_report_prev = keyboard_report;
|
||||||
|
keyboard_report = tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_clear_keyboard_report(void)
|
||||||
|
{
|
||||||
|
keyboard_report->mods = 0;
|
||||||
|
for (int8_t i = 0; i < REPORT_KEYS; i++) {
|
||||||
|
keyboard_report->keys[i] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t host_has_anykey(void)
|
||||||
|
{
|
||||||
|
uint8_t cnt = 0;
|
||||||
|
for (int i = 0; i < REPORT_KEYS; i++) {
|
||||||
|
if (keyboard_report->keys[i])
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
return cnt;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t *host_get_keys(void)
|
||||||
|
{
|
||||||
|
return keyboard_report->keys;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t host_get_mods(void)
|
||||||
|
{
|
||||||
|
return keyboard_report->mods;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void host_send_keyboard_report(void)
|
||||||
|
{
|
||||||
|
usb_keyboard_send_report(keyboard_report);
|
||||||
|
}
|
||||||
|
|
||||||
|
void host_mouse_send(report_mouse_t *report)
|
||||||
|
{
|
||||||
|
usb_mouse_send(report->x, report->y, report->v, report->h, report->buttons);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static inline void add_key_byte(uint8_t code)
|
||||||
|
{
|
||||||
|
// TODO: fix ugly code
|
||||||
|
int8_t i = 0;
|
||||||
|
int8_t empty = -1;
|
||||||
|
for (; i < REPORT_KEYS; i++) {
|
||||||
|
if (keyboard_report_prev->keys[i] == code) {
|
||||||
|
keyboard_report->keys[i] = code;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (empty == -1 &&
|
||||||
|
keyboard_report_prev->keys[i] == 0 &&
|
||||||
|
keyboard_report->keys[i] == 0) {
|
||||||
|
empty = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (i == REPORT_KEYS) {
|
||||||
|
if (empty != -1) {
|
||||||
|
keyboard_report->keys[empty] = code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void add_key_bit(uint8_t code)
|
||||||
|
{
|
||||||
|
if ((code>>3) < REPORT_KEYS) {
|
||||||
|
keyboard_report->keys[code>>3] |= 1<<(code&7);
|
||||||
|
} else {
|
||||||
|
debug("add_key_bit: can't add: "); phex(code); debug("\n");
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
PS/2 to USB keyboard converter with V-USB
|
||||||
|
=========================================
|
||||||
|
2011/02/07
|
||||||
|
|
||||||
|
NOT COMPLETED
|
||||||
|
development was suspended.
|
||||||
|
|
||||||
|
TODO:
|
||||||
|
PS/2 library: losts data from keyboard occasionally,
|
||||||
|
should use interrupt thoroughly for communication.
|
||||||
|
|
||||||
|
Code cleaning: merge code changed here to other subprojects and common modules.
|
Loading…
Reference in New Issue