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