Skip to content
Snippets Groups Projects
Commit 3ab0b3a0 authored by Dean Camera's avatar Dean Camera
Browse files

Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t...

Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t type in ProcessLEDReport().
parent 7ae91099
Branches
Tags
No related merge requests found
...@@ -294,13 +294,13 @@ void ProcessLEDReport(uint8_t LEDReport) ...@@ -294,13 +294,13 @@ void ProcessLEDReport(uint8_t LEDReport)
{ {
uint8_t LEDMask = LEDS_LED2; uint8_t LEDMask = LEDS_LED2;
if (*LEDReport & KEYBOARD_LED_NUMLOCK) if (LEDReport & KEYBOARD_LED_NUMLOCK)
LEDMask |= LEDS_LED1; LEDMask |= LEDS_LED1;
if (*LEDReport & KEYBOARD_LED_CAPSLOCK) if (LEDReport & KEYBOARD_LED_CAPSLOCK)
LEDMask |= LEDS_LED3; LEDMask |= LEDS_LED3;
if (*LEDReport & KEYBOARD_LED_SCROLLLOCK) if (LEDReport & KEYBOARD_LED_SCROLLLOCK)
LEDMask |= LEDS_LED4; LEDMask |= LEDS_LED4;
/* Set the status LEDs to the current Keyboard LED status */ /* Set the status LEDs to the current Keyboard LED status */
......
...@@ -37,7 +37,6 @@ ...@@ -37,7 +37,6 @@
#include "TINYNVM.h" #include "TINYNVM.h"
#if defined(ENABLE_XPROG_PROTOCOL) || defined(__DOXYGEN__) #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 */ /** Sends the given pointer address to the target's TPI pointer register */
static void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress) static void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment