Open Garden  0.10.1-21
usb.h
Go to the documentation of this file.
1 /* This file is part of OpenGarden
2  * Copyright (C) 2011, 2012 Enrico Rossi
3  *
4  * OpenGarden is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * OpenGarden is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
22 #ifndef USB_H
23 #define USB_H
24 
26 #define USB_PORT PORTD
27 
28 #define USB_DDR DDRD
29 
30 #define USB_PORTIN PIND
31 
32 #define USB_PIN PIND2
33 
35 #define TRUE 1
36 
37 #define FALSE 0
38 
42 volatile uint8_t usb_connected;
43 
44 uint8_t usb_is_connected(void);
45 void usb_init(void);
46 void usb_shutdown(void);
47 
48 #endif
volatile uint8_t usb_connected
Definition: usb.h:42
void usb_shutdown(void)
Definition: usb.c:60
void usb_init(void)
Definition: usb.c:45
uint8_t usb_is_connected(void)
Definition: usb.c:34