aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2018-06-17 16:13:18 +1000
committerDean Camera <dean@fourwalledcubicle.com>2018-06-17 16:13:18 +1000
commitfd024de89fd4a313ff3b3715e878b402822796ed (patch)
treef8e098fe736dd49fa04c818214d7b01ad0754a53 /Projects
parenta08a02481ba9e68933ad0b89483f5328767df9f3 (diff)
downloadlufa-fd024de89fd4a313ff3b3715e878b402822796ed.tar.gz
lufa-fd024de89fd4a313ff3b3715e878b402822796ed.tar.bz2
lufa-fd024de89fd4a313ff3b3715e878b402822796ed.zip
Fix LEDNotifier project writing to the incorrect output stream.
Diffstat (limited to 'Projects')
-rw-r--r--Projects/LEDNotifier/LEDNotifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c
index b164ed006..cfad0c288 100644
--- a/Projects/LEDNotifier/LEDNotifier.c
+++ b/Projects/LEDNotifier/LEDNotifier.c
@@ -134,7 +134,7 @@ int main(void)
if (Channel & (1 << 7))
SoftPWM_Channel3_Duty = Duty;
- fputc(&USBSerialStream, ColourUpdate);
+ fputc(ColourUpdate, &USBSerialStream);
CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
USB_USBTask();