2011-05-31 14:17:56 +02:00
|
|
|
#include <util/delay.h>
|
2010-11-17 08:06:20 +01:00
|
|
|
#include <avr/interrupt.h>
|
2011-05-31 14:17:56 +02:00
|
|
|
#include "host.h"
|
2010-11-17 08:06:20 +01:00
|
|
|
#include "usb_extra.h"
|
|
|
|
|
2010-11-18 14:35:49 +01:00
|
|
|
|
2011-05-31 14:17:56 +02:00
|
|
|
int8_t usb_extra_send(uint8_t report_id, uint16_t data)
|
2010-11-17 08:06:20 +01:00
|
|
|
{
|
|
|
|
uint8_t intr_state, timeout;
|
|
|
|
|
|
|
|
if (!usb_configured()) return -1;
|
|
|
|
intr_state = SREG;
|
|
|
|
cli();
|
|
|
|
UENUM = EXTRA_ENDPOINT;
|
|
|
|
timeout = UDFNUML + 50;
|
|
|
|
while (1) {
|
|
|
|
// are we ready to transmit?
|
|
|
|
if (UEINTX & (1<<RWAL)) break;
|
|
|
|
SREG = intr_state;
|
|
|
|
// has the USB gone offline?
|
|
|
|
if (!usb_configured()) return -1;
|
|
|
|
// have we waited too long?
|
|
|
|
if (UDFNUML == timeout) return -1;
|
|
|
|
// get ready to try checking again
|
|
|
|
intr_state = SREG;
|
|
|
|
cli();
|
|
|
|
UENUM = EXTRA_ENDPOINT;
|
|
|
|
}
|
|
|
|
|
2010-11-18 14:35:49 +01:00
|
|
|
UEDATX = report_id;
|
2011-05-31 14:17:56 +02:00
|
|
|
UEDATX = data&0xFF;
|
|
|
|
UEDATX = (data>>8)&0xFF;
|
2010-11-17 08:06:20 +01:00
|
|
|
|
|
|
|
UEINTX = 0x3A;
|
|
|
|
SREG = intr_state;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-11-18 14:35:49 +01:00
|
|
|
|
2011-05-31 14:17:56 +02:00
|
|
|
int8_t usb_extra_consumer_send(uint16_t bits)
|
2010-11-18 14:35:49 +01:00
|
|
|
{
|
2011-05-31 14:17:56 +02:00
|
|
|
return usb_extra_send(REPORT_ID_CONSUMER, bits);
|
2010-11-18 14:35:49 +01:00
|
|
|
}
|
|
|
|
|
2011-05-31 14:17:56 +02:00
|
|
|
int8_t usb_extra_system_send(uint16_t bits)
|
2010-11-18 14:35:49 +01:00
|
|
|
{
|
2011-05-31 14:17:56 +02:00
|
|
|
return usb_extra_send(REPORT_ID_SYSTEM, bits);
|
2010-11-18 14:35:49 +01:00
|
|
|
}
|