diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2015-08-01 11:52:23 +1000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2015-08-01 11:52:23 +1000 |
commit | 7c9c3d15e0b772a8bf26c9695236b80cb26c71b5 (patch) | |
tree | c0378678154e022f244d846527f6473e1111e2f5 /Projects/LEDNotifier | |
parent | 617763ae20a9fbd35ed86956450f1555286636af (diff) | |
download | lufa-7c9c3d15e0b772a8bf26c9695236b80cb26c71b5.tar.gz lufa-7c9c3d15e0b772a8bf26c9695236b80cb26c71b5.tar.bz2 lufa-7c9c3d15e0b772a8bf26c9695236b80cb26c71b5.zip |
Minor documentation improvements.
Diffstat (limited to 'Projects/LEDNotifier')
-rw-r--r-- | Projects/LEDNotifier/LEDNotifier.c | 2 | ||||
-rw-r--r-- | Projects/LEDNotifier/makefile | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index 6242774a6..8e70e90d4 100644 --- a/Projects/LEDNotifier/LEDNotifier.c +++ b/Projects/LEDNotifier/LEDNotifier.c @@ -134,6 +134,8 @@ int main(void) if (Channel & (1 << 7)) SoftPWM_Channel3_Duty = Duty; + fputc(&USBSerialStream, ColourUpdate); + CDC_Device_USBTask(&VirtualSerial_CDC_Interface); USB_USBTask(); } diff --git a/Projects/LEDNotifier/makefile b/Projects/LEDNotifier/makefile index 05436edec..41f9d1647 100644 --- a/Projects/LEDNotifier/makefile +++ b/Projects/LEDNotifier/makefile @@ -11,10 +11,10 @@ # Run "make help" for target help. -MCU = at90usb1287 +MCU = atmega32u2 ARCH = AVR8 -BOARD = BUI -F_CPU = 8000000 +BOARD = USB2AX +F_CPU = 16000000 F_USB = $(F_CPU) OPTIMIZATION = s TARGET = LEDNotifier |