aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-12-20 20:19:33 +1100
committerDean Camera <dean@fourwalledcubicle.com>2013-12-20 20:19:33 +1100
commitd8f0d2709b02b38f363f4497f5e2ceb987743719 (patch)
treedcc0bd7a992ccf1130531e95ac085ccd7a51d10f /Projects
parent9965b2ca0a32b06b578f009396aa6071c92ebd88 (diff)
downloadlufa-d8f0d2709b02b38f363f4497f5e2ceb987743719.tar.gz
lufa-d8f0d2709b02b38f363f4497f5e2ceb987743719.tar.bz2
lufa-d8f0d2709b02b38f363f4497f5e2ceb987743719.zip
Minor documentation improvements.
Diffstat (limited to 'Projects')
-rw-r--r--Projects/LEDNotifier/LEDNotifier.c10
1 files changed, 5 insertions, 5 deletions
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;