summaryrefslogtreecommitdiff
path: root/usb_extra.c
blob: 94c317d981e11057a0ee5c4082735a47b7f74d62 (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
#include <avr/interrupt.h>
#include "usb_extra.h"

int8_t usb_extra_send(uint8_t bits)
{
	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;
	}

	UEDATX = 1; // report id
	UEDATX = bits;

	UEINTX = 0x3A;
	SREG = intr_state;
	return 0;
}