summaryrefslogtreecommitdiff
path: root/main_vusb.c
blob: 017888e972cc657d02391ce09bad1501f88e8311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Name: main.c
 * Project: hid-mouse, a very simple HID example
 * Author: Christian Starkjohann
 * Creation Date: 2008-04-07
 * Tabsize: 4
 * Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
 * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
 * This Revision: $Id: main.c 790 2010-05-30 21:00:26Z cs $
 */
#include <stdint.h>
#include <avr/wdt.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include "usbdrv.h"
#include "oddebug.h"
#include "host_vusb.h"
#include "keyboard.h"


#if 0
#define DEBUGP_INIT() do { DDRC = 0xFF; } while (0)
#define DEBUGP(x) do { PORTC = x; } while (0)
#else
#define DEBUGP_INIT()
#define DEBUGP(x)
#endif


int main(void)
{
    DEBUGP_INIT();
    wdt_enable(WDTO_1S);
    odDebugInit();
    usbInit();

    /* enforce re-enumeration, do this while interrupts are disabled! */
    usbDeviceDisconnect();
    uint8_t i = 0;
    /* fake USB disconnect for > 250 ms */
    while(--i){
        wdt_reset();
        _delay_ms(1);
    }
    usbDeviceConnect();

    keyboard_init();

    sei();
    while (1) {
        DEBUGP(0x1);
        wdt_reset();
        usbPoll();
        DEBUGP(0x2);
        keyboard_proc();
        DEBUGP(0x3);
        host_vusb_keyboard_send();
    }
}