diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-08 03:32:31 +0000 |
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-08 03:32:31 +0000 |
| commit | 3ab0b3a027db2549bc024780d7787061705056f6 (patch) | |
| tree | 5bd5d204788a8a2ef6bf60387091a5a2fddc08a8 | |
| parent | 7ae91099e9b356d3f9fe14b41a53a6af1161690c (diff) | |
| download | lufa-3ab0b3a027db2549bc024780d7787061705056f6.tar.gz lufa-3ab0b3a027db2549bc024780d7787061705056f6.tar.bz2 lufa-3ab0b3a027db2549bc024780d7787061705056f6.zip | |
Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t type in ProcessLEDReport().
| -rw-r--r-- | Demos/Device/LowLevel/Keyboard/Keyboard.c | 6 | ||||
| -rw-r--r-- | Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/Demos/Device/LowLevel/Keyboard/Keyboard.c b/Demos/Device/LowLevel/Keyboard/Keyboard.c index e09bed7ca..9ce4eb9ed 100644 --- a/Demos/Device/LowLevel/Keyboard/Keyboard.c +++ b/Demos/Device/LowLevel/Keyboard/Keyboard.c @@ -294,13 +294,13 @@ void ProcessLEDReport(uint8_t LEDReport) {
uint8_t LEDMask = LEDS_LED2;
- if (*LEDReport & KEYBOARD_LED_NUMLOCK)
+ if (LEDReport & KEYBOARD_LED_NUMLOCK)
LEDMask |= LEDS_LED1;
- if (*LEDReport & KEYBOARD_LED_CAPSLOCK)
+ if (LEDReport & KEYBOARD_LED_CAPSLOCK)
LEDMask |= LEDS_LED3;
- if (*LEDReport & KEYBOARD_LED_SCROLLLOCK)
+ if (LEDReport & KEYBOARD_LED_SCROLLLOCK)
LEDMask |= LEDS_LED4;
/* Set the status LEDs to the current Keyboard LED status */
diff --git a/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c b/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c index 34ffb1e7b..90559208d 100644 --- a/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c +++ b/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c @@ -37,7 +37,6 @@ #include "TINYNVM.h"
#if defined(ENABLE_XPROG_PROTOCOL) || defined(__DOXYGEN__)
-#warning TPI Protocol support is currently incomplete and is not suitable for general use.
/** Sends the given pointer address to the target's TPI pointer register */
static void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress)
|
