diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt index 4935e5f83f..f80c1909ba 100644 --- a/LUFA/DoxygenPages/ChangeLog.txt +++ b/LUFA/DoxygenPages/ChangeLog.txt @@ -8,13 +8,14 @@ * * \section Sec_ChangeLogXXXXXX Version XXXXXX * New: - * - Added support for the Atmel Xplained-MINI series of development kits. + * - Added support for the Atmel Xplained-MINI series of development kits + * - Added new PROGMEM variant send functions to the CDC class driver (thanks to Stefan Hellermann) * * Changed: * - Library Applications: * - The CDC, DFU, Mass Storage and Printer class bootloaders will no longer run the user application if the application reset * vector is blank (thanks to Alex Kazik) - * - The CDC, DFU and Printer class bootloaders are now compatible with the original Atmel XPLAIN and Arduino Leonardo boards. + * - The CDC, DFU and Printer class bootloaders are now compatible with the original Atmel XPLAIN and Arduino Leonardo boards * - The CDC, DFU, Mass Storage and Printer class bootloaders are not compatible with devices with the BOOTRST fuse set and will * exit automatically unless an external reset was the last reset cause (thanks to Alex Kazik) * diff --git a/LUFA/DoxygenPages/CompileTimeTokens.txt b/LUFA/DoxygenPages/CompileTimeTokens.txt index ab075cff73..00b5439042 100644 --- a/LUFA/DoxygenPages/CompileTimeTokens.txt +++ b/LUFA/DoxygenPages/CompileTimeTokens.txt @@ -114,7 +114,7 @@ * VBUS events, the library attempts to determine the connection state via the bus suspension and wake up events instead. This however may be * slightly inaccurate due to the possibility of the host suspending the bus while the device is still connected. If accurate connection status is * required, the VBUS line of the USB connector should be routed to an AVR pin to detect its level, so that the USB_DeviceState global - * can be accurately set and the \ref EVENT_USB_Device_Connect() and \ref EVENT_USB_Device_Disconnect() events manually raised by the RAISE_EVENT macro. + * can be accurately set and the \ref EVENT_USB_Device_Connect() and \ref EVENT_USB_Device_Disconnect() events manually raised by the user application. * When defined, this token disables the library's auto-detection of the connection state by the aforementioned suspension and wake up events. * * \li NO_SOF_EVENTS - (\ref Group_Events) - All Architectures \n diff --git a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest index ea6edeb258..cfb82ed12d 100644 --- a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest +++ b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest @@ -15,19 +15,20 @@ AtmelStudio AtmelStudio + AtmelStudio 1033 - false + false LUFA.pkgdef - helpcontentsetup.msha + helpcontentsetup.msha asf-manifest.xml diff --git a/LUFA/StudioIntegration/lufa.xml b/LUFA/StudioIntegration/lufa.xml index 28afdda587..ecbb1d6798 100644 --- a/LUFA/StudioIntegration/lufa.xml +++ b/LUFA/StudioIntegration/lufa.xml @@ -58,7 +58,7 @@ - + diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index 6242774a62..8e70e90d4d 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 05436edec1..41f9d16478 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