diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-21 07:42:43 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-21 07:42:43 +0000 |
| commit | b3c255659f933a8989db339967f15973ffadb073 (patch) | |
| tree | 91b28f26b3268708bc916a05372326e5e51e88ac /Projects/LEDNotifier/LEDNotifier.c | |
| parent | cf2fecf727e8742cce479e918ea5502bebc69633 (diff) | |
Correct TeensyHID bootloader descriptors to use the correct revision code for the ATMEGA32U4 based Teensy revision.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@996 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/LEDNotifier/LEDNotifier.c')
| -rw-r--r-- | Projects/LEDNotifier/LEDNotifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index c44ca58d..1a876165 100644 --- a/Projects/LEDNotifier/LEDNotifier.c +++ b/Projects/LEDNotifier/LEDNotifier.c @@ -78,7 +78,7 @@ ISR(TIMER0_COMPA_vect, ISR_BLOCK) {
uint8_t LEDMask = LEDS_ALL_LEDS;
- if (++SoftPWM_Count == 0x1F)
+ if (++SoftPWM_Count == 0b00011111)
SoftPWM_Count = 0;
if (SoftPWM_Count >= SoftPWM_Channel1_Duty)
|
