2015-04-09 18:32:04 +02:00
|
|
|
/* 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 $
|
|
|
|
*/
|
2020-06-09 22:30:37 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include <stdint.h>
|
2020-06-09 22:30:37 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include <avr/interrupt.h>
|
2020-06-09 22:30:37 +02:00
|
|
|
#include <avr/power.h>
|
2015-04-09 18:32:04 +02:00
|
|
|
#include <avr/wdt.h>
|
|
|
|
#include <avr/sleep.h>
|
2020-06-09 22:30:37 +02:00
|
|
|
|
2020-05-30 22:14:59 +02:00
|
|
|
#include <usbdrv/usbdrv.h>
|
2020-06-09 22:30:37 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "vusb.h"
|
2020-06-09 22:30:37 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "keyboard.h"
|
|
|
|
#include "host.h"
|
|
|
|
#include "timer.h"
|
2020-06-09 22:30:37 +02:00
|
|
|
#include "print.h"
|
2020-04-05 10:18:19 +02:00
|
|
|
#include "suspend.h"
|
2020-05-03 02:25:39 +02:00
|
|
|
#include "wait.h"
|
|
|
|
#include "sendchar.h"
|
|
|
|
|
2020-03-26 19:21:33 +01:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
# include "sleep_led.h"
|
|
|
|
#endif
|
2019-10-29 23:53:11 +01:00
|
|
|
|
2020-05-03 02:25:39 +02:00
|
|
|
#ifdef CONSOLE_ENABLE
|
|
|
|
void console_task(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RAW_ENABLE
|
|
|
|
void raw_hid_task(void);
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
/* This is from main.c of USBaspLoader */
|
2019-08-30 20:19:03 +02:00
|
|
|
static void initForUsbConnectivity(void) {
|
2015-04-09 18:32:04 +02:00
|
|
|
uint8_t i = 0;
|
|
|
|
|
|
|
|
usbInit();
|
|
|
|
/* enforce USB re-enumerate: */
|
2019-08-30 20:19:03 +02:00
|
|
|
usbDeviceDisconnect(); /* do this while interrupts are disabled */
|
|
|
|
while (--i) { /* fake USB disconnect for > 250 ms */
|
2015-04-09 18:32:04 +02:00
|
|
|
wdt_reset();
|
2020-06-09 22:30:37 +02:00
|
|
|
wait_ms(1);
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
usbDeviceConnect();
|
|
|
|
}
|
|
|
|
|
2020-05-03 02:25:39 +02:00
|
|
|
static void usb_remote_wakeup(void) {
|
2020-04-05 10:18:19 +02:00
|
|
|
cli();
|
|
|
|
|
|
|
|
int8_t ddr_orig = USBDDR;
|
|
|
|
USBOUT |= (1 << USBMINUS);
|
|
|
|
USBDDR = ddr_orig | USBMASK;
|
|
|
|
USBOUT ^= USBMASK;
|
|
|
|
|
2020-06-09 22:30:37 +02:00
|
|
|
wait_ms(25);
|
2020-04-05 10:18:19 +02:00
|
|
|
|
|
|
|
USBOUT ^= USBMASK;
|
|
|
|
USBDDR = ddr_orig;
|
|
|
|
USBOUT &= ~(1 << USBMINUS);
|
|
|
|
|
|
|
|
sei();
|
|
|
|
}
|
|
|
|
|
2020-05-03 02:25:39 +02:00
|
|
|
/** \brief Setup USB
|
|
|
|
*
|
|
|
|
* FIXME: Needs doc
|
|
|
|
*/
|
|
|
|
static void setup_usb(void) {
|
|
|
|
initForUsbConnectivity();
|
|
|
|
|
|
|
|
// for Console_Task
|
|
|
|
print_set_sendchar(sendchar);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Main
|
|
|
|
*
|
|
|
|
* FIXME: Needs doc
|
|
|
|
*/
|
|
|
|
int main(void) __attribute__((weak));
|
2019-08-30 20:19:03 +02:00
|
|
|
int main(void) {
|
2015-04-09 18:32:04 +02:00
|
|
|
bool suspended = false;
|
|
|
|
#if USB_COUNT_SOF
|
|
|
|
uint16_t last_timer = timer_read();
|
|
|
|
#endif
|
|
|
|
|
2017-01-21 18:30:06 +01:00
|
|
|
#ifdef CLKPR
|
|
|
|
// avoid unintentional changes of clock frequency in devices that have a
|
|
|
|
// clock prescaler
|
2020-06-09 22:30:37 +02:00
|
|
|
clock_prescale_set(clock_div_1);
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
2019-02-15 05:18:54 +01:00
|
|
|
keyboard_setup();
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
host_set_driver(vusb_driver());
|
2020-05-03 02:25:39 +02:00
|
|
|
setup_usb();
|
|
|
|
sei();
|
|
|
|
|
|
|
|
wait_ms(50);
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2020-02-22 16:10:41 +01:00
|
|
|
keyboard_init();
|
2020-03-26 19:21:33 +01:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
sleep_led_init();
|
|
|
|
#endif
|
2020-02-22 16:10:41 +01:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
while (1) {
|
|
|
|
#if USB_COUNT_SOF
|
|
|
|
if (usbSofCount != 0) {
|
2019-08-30 20:19:03 +02:00
|
|
|
suspended = false;
|
2015-04-09 18:32:04 +02:00
|
|
|
usbSofCount = 0;
|
2019-08-30 20:19:03 +02:00
|
|
|
last_timer = timer_read();
|
2020-03-26 19:21:33 +01:00
|
|
|
# ifdef SLEEP_LED_ENABLE
|
|
|
|
sleep_led_disable();
|
|
|
|
# endif
|
2015-04-09 18:32:04 +02:00
|
|
|
} else {
|
|
|
|
// Suspend when no SOF in 3ms-10ms(7.1.7.4 Suspending of USB1.1)
|
|
|
|
if (timer_elapsed(last_timer) > 5) {
|
|
|
|
suspended = true;
|
2020-03-26 19:21:33 +01:00
|
|
|
# ifdef SLEEP_LED_ENABLE
|
|
|
|
sleep_led_enable();
|
|
|
|
# endif
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (!suspended) {
|
|
|
|
usbPoll();
|
|
|
|
|
2020-05-03 02:25:39 +02:00
|
|
|
// TODO: configuration process is inconsistent. it sometime fails.
|
2015-04-09 18:32:04 +02:00
|
|
|
// To prevent failing to configure NOT scan keyboard during configuration
|
|
|
|
if (usbConfiguration && usbInterruptIsReady()) {
|
|
|
|
keyboard_task();
|
|
|
|
}
|
|
|
|
vusb_transfer_keyboard();
|
2020-05-03 02:25:39 +02:00
|
|
|
|
2020-03-30 22:15:05 +02:00
|
|
|
#ifdef RAW_ENABLE
|
|
|
|
usbPoll();
|
|
|
|
|
|
|
|
if (usbConfiguration && usbInterruptIsReady3()) {
|
|
|
|
raw_hid_task();
|
|
|
|
}
|
2020-05-03 02:25:39 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONSOLE_ENABLE
|
|
|
|
usbPoll();
|
|
|
|
|
|
|
|
if (usbConfiguration && usbInterruptIsReady3()) {
|
|
|
|
console_task();
|
|
|
|
}
|
2020-03-30 22:15:05 +02:00
|
|
|
#endif
|
2020-11-28 21:02:18 +01:00
|
|
|
|
|
|
|
// Run housekeeping
|
|
|
|
housekeeping_task_kb();
|
|
|
|
housekeeping_task_user();
|
2020-04-05 10:18:19 +02:00
|
|
|
} else if (suspend_wakeup_condition()) {
|
|
|
|
usb_remote_wakeup();
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|