diff options
Diffstat (limited to 'Projects/LEDNotifier')
-rw-r--r-- | Projects/LEDNotifier/Descriptors.c | 6 | ||||
-rw-r--r-- | Projects/LEDNotifier/Doxygen.conf | 1 | ||||
-rw-r--r-- | Projects/LEDNotifier/LEDNotifier.c | 10 |
3 files changed, 8 insertions, 9 deletions
diff --git a/Projects/LEDNotifier/Descriptors.c b/Projects/LEDNotifier/Descriptors.c index bf72c6da8..161f5c8f3 100644 --- a/Projects/LEDNotifier/Descriptors.c +++ b/Projects/LEDNotifier/Descriptors.c @@ -47,7 +47,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = { .Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, - .USBSpecification = VERSION_BCD(01.10), + .USBSpecification = VERSION_BCD(1,1,0), .Class = CDC_CSCP_CDCClass, .SubClass = CDC_CSCP_NoSpecificSubclass, .Protocol = CDC_CSCP_NoSpecificProtocol, @@ -56,7 +56,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = .VendorID = 0x03EB, .ProductID = 0x2044, - .ReleaseNumber = VERSION_BCD(00.01), + .ReleaseNumber = VERSION_BCD(0,0,1), .ManufacturerStrIndex = STRING_ID_Manufacturer, .ProductStrIndex = STRING_ID_Product, @@ -108,7 +108,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = DTYPE_CSInterface}, .Subtype = CDC_DSUBTYPE_CSInterface_Header, - .CDCSpecification = VERSION_BCD(01.10), + .CDCSpecification = VERSION_BCD(1,1,0), }, .CDC_Functional_ACM = diff --git a/Projects/LEDNotifier/Doxygen.conf b/Projects/LEDNotifier/Doxygen.conf index 896befd52..2e5e39b96 100644 --- a/Projects/LEDNotifier/Doxygen.conf +++ b/Projects/LEDNotifier/Doxygen.conf @@ -782,7 +782,6 @@ RECURSIVE = YES EXCLUDE = Documentation/ \ CPUUsageApp/ \ - HotmailNotifierApp/ \ LEDMixerApp/ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index e1d5dd97f..da273b1eb 100644 --- a/Projects/LEDNotifier/LEDNotifier.c +++ b/Projects/LEDNotifier/LEDNotifier.c @@ -66,20 +66,20 @@ USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface = }, }; -/** Counter for the software PWM */ +/** Counter for the software PWM. */ static volatile uint8_t SoftPWM_Count; -/** Duty cycle for the first software PWM channel */ +/** Duty cycle for the first software PWM channel. */ static volatile uint8_t SoftPWM_Channel1_Duty; -/** Duty cycle for the second software PWM channel */ +/** Duty cycle for the second software PWM channel. */ static volatile uint8_t SoftPWM_Channel2_Duty; -/** Duty cycle for the third software PWM channel */ +/** Duty cycle for the third software PWM channel. */ static volatile uint8_t SoftPWM_Channel3_Duty; /** Standard file stream for the CDC interface when set up, so that the virtual CDC COM port can be - * used like any regular character stream in the C APIs + * used like any regular character stream in the C APIs. */ static FILE USBSerialStream; |