2012-08-27 06:18:01 +00:00
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/wdt.h>
|
|
|
|
#include <avr/power.h>
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
|
|
|
// USB HID host
|
|
|
|
#include "Usb.h"
|
|
|
|
#include "hid.h"
|
|
|
|
#include "hidboot.h"
|
|
|
|
#include "parser.h"
|
2014-12-10 14:52:38 +00:00
|
|
|
#include "usbhub.h"
|
2012-08-27 06:18:01 +00:00
|
|
|
|
|
|
|
// LUFA
|
|
|
|
#include "lufa.h"
|
|
|
|
|
2012-09-04 04:29:21 +00:00
|
|
|
#include "timer.h"
|
2014-12-10 06:10:25 +00:00
|
|
|
#include "sendchar.h"
|
2012-08-27 06:18:01 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
|
2015-05-13 06:59:49 +00:00
|
|
|
|
|
|
|
/* LED ping configuration */
|
|
|
|
#define TMK_LED
|
|
|
|
//#define LEONARDO_LED
|
|
|
|
#if defined(TMK_LED)
|
|
|
|
// For TMK converter and Teensy
|
|
|
|
#define LED_TX_INIT (DDRD |= (1<<6))
|
|
|
|
#define LED_TX_ON (PORTD |= (1<<6))
|
|
|
|
#define LED_TX_OFF (PORTD &= ~(1<<6))
|
|
|
|
#define LED_TX_TOGGLE (PORTD ^= (1<<6))
|
|
|
|
#elif defined(LEONARDO_LED)
|
|
|
|
// For Leonardo(TX LED)
|
|
|
|
#define LED_TX_INIT (DDRD |= (1<<5))
|
|
|
|
#define LED_TX_ON (PORTD &= ~(1<<5))
|
|
|
|
#define LED_TX_OFF (PORTD |= (1<<5))
|
|
|
|
#define LED_TX_TOGGLE (PORTD ^= (1<<5))
|
|
|
|
#else
|
|
|
|
#define LED_TX_INIT
|
|
|
|
#define LED_TX_ON
|
|
|
|
#define LED_TX_OFF
|
|
|
|
#define LED_TX_TOGGLE
|
|
|
|
#endif
|
2012-08-27 06:18:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
static USB usb_host;
|
|
|
|
static HIDBoot<HID_PROTOCOL_KEYBOARD> kbd(&usb_host);
|
|
|
|
static KBDReportParser kbd_parser;
|
2014-12-10 14:52:38 +00:00
|
|
|
static USBHub hub1(&usb_host); // one hub is enough for HHKB pro2
|
|
|
|
/* may be needed for other device with more hub
|
|
|
|
static USBHub hub2(&usb_host);
|
|
|
|
static USBHub hub3(&usb_host);
|
|
|
|
static USBHub hub4(&usb_host);
|
|
|
|
static USBHub hub5(&usb_host);
|
|
|
|
static USBHub hub6(&usb_host);
|
|
|
|
static USBHub hub7(&usb_host);
|
|
|
|
*/
|
2012-08-27 06:18:01 +00:00
|
|
|
|
|
|
|
static void LUFA_setup(void)
|
|
|
|
{
|
|
|
|
/* Disable watchdog if enabled by bootloader/fuses */
|
|
|
|
MCUSR &= ~(1 << WDRF);
|
|
|
|
wdt_disable();
|
|
|
|
|
|
|
|
/* Disable clock division */
|
|
|
|
clock_prescale_set(clock_div_1);
|
|
|
|
|
|
|
|
// Leonardo needs. Without this USB device is not recognized.
|
|
|
|
USB_Disable();
|
|
|
|
|
|
|
|
USB_Init();
|
|
|
|
|
|
|
|
// for Console_Task
|
|
|
|
USB_Device_EnableSOFEvents();
|
2014-12-10 06:10:25 +00:00
|
|
|
print_set_sendchar(sendchar);
|
2012-08-27 06:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void HID_setup()
|
|
|
|
{
|
|
|
|
if (usb_host.Init() == -1) {
|
|
|
|
LED_TX_OFF;
|
|
|
|
}
|
2015-05-13 04:55:11 +00:00
|
|
|
|
2012-08-27 06:18:01 +00:00
|
|
|
_delay_ms(200);
|
2015-05-13 04:55:11 +00:00
|
|
|
|
2012-08-27 06:18:01 +00:00
|
|
|
kbd.SetReportParser(0, (HIDReportParser*)&kbd_parser);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
// LED for debug
|
|
|
|
LED_TX_INIT;
|
|
|
|
LED_TX_ON;
|
|
|
|
|
|
|
|
debug_enable = true;
|
|
|
|
|
|
|
|
host_set_driver(&lufa_driver);
|
|
|
|
keyboard_init();
|
|
|
|
|
|
|
|
LUFA_setup();
|
2015-05-13 04:55:11 +00:00
|
|
|
HID_setup();
|
|
|
|
/* NOTE: Don't insert time consuming job here.
|
|
|
|
* It'll cause unclear initialization failure when DFU reset(worm start).
|
|
|
|
*/
|
2012-08-27 06:18:01 +00:00
|
|
|
sei();
|
|
|
|
|
|
|
|
// wait for startup of sendchar routine
|
|
|
|
while (USB_DeviceState != DEVICE_STATE_Configured) ;
|
|
|
|
if (debug_enable) {
|
|
|
|
_delay_ms(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("init: done\n");
|
2012-09-04 04:29:21 +00:00
|
|
|
|
|
|
|
uint16_t timer;
|
2012-08-27 06:18:01 +00:00
|
|
|
for (;;) {
|
2012-10-07 02:09:40 +00:00
|
|
|
keyboard_task();
|
2012-08-27 06:18:01 +00:00
|
|
|
|
2012-09-04 04:29:21 +00:00
|
|
|
timer = timer_read();
|
2012-08-27 06:18:01 +00:00
|
|
|
usb_host.Task();
|
2012-09-04 04:29:21 +00:00
|
|
|
timer = timer_elapsed(timer);
|
|
|
|
if (timer > 100) {
|
|
|
|
debug("host.Task: "); debug_hex16(timer); debug("\n");
|
|
|
|
}
|
2012-08-27 06:18:01 +00:00
|
|
|
|
|
|
|
#if !defined(INTERRUPT_CONTROL_ENDPOINT)
|
|
|
|
// LUFA Task for control request
|
|
|
|
USB_USBTask();
|
|
|
|
#endif
|
|
|
|
}
|
2015-05-13 04:55:11 +00:00
|
|
|
|
2012-08-27 06:18:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|