Enhance the HotmailNotifier project so that the LEDs' individual brightness can be...
[pub/USBasp.git] / Demos / Device / LowLevel / VirtualSerial / VirtualSerial.h
index 4a7b6b1..ee62354 100644 (file)
 \r
 /** \file\r
  *\r
- *  Header file for CDC.c.\r
+ *  Header file for VirtualSerial.c.\r
  */\r
 \r
-#ifndef _CDC_H_\r
-#define _CDC_H_\r
+#ifndef _VIRTUALSERIAL_H_\r
+#define _VIRTUALSERIAL_H_\r
 \r
        /* Includes: */\r
                #include <avr/io.h>\r
                #define CONTROL_LINE_IN_OVERRUNERROR (1 << 6)\r
                \r
                /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */\r
-               #define LEDMASK_USB_NOTREADY      LEDS_LED1\r
+               #define LEDMASK_USB_NOTREADY         LEDS_LED1\r
 \r
                /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */\r
-               #define LEDMASK_USB_ENUMERATING  (LEDS_LED2 | LEDS_LED3)\r
+               #define LEDMASK_USB_ENUMERATING     (LEDS_LED2 | LEDS_LED3)\r
 \r
                /** LED mask for the library LED driver, to indicate that the USB interface is ready. */\r
-               #define LEDMASK_USB_READY        (LEDS_LED2 | LEDS_LED4)\r
+               #define LEDMASK_USB_READY           (LEDS_LED2 | LEDS_LED4)\r
 \r
                /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */\r
-               #define LEDMASK_USB_ERROR        (LEDS_LED1 | LEDS_LED3)\r
+               #define LEDMASK_USB_ERROR           (LEDS_LED1 | LEDS_LED3)\r
 \r
        /* Type Defines: */\r
                /** Type define for the virtual serial port line encoding settings, for storing the current USART configuration\r