diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-06-17 16:13:18 +1000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2018-06-17 16:13:18 +1000 |
commit | fd024de89fd4a313ff3b3715e878b402822796ed (patch) | |
tree | f8e098fe736dd49fa04c818214d7b01ad0754a53 /Projects | |
parent | a08a02481ba9e68933ad0b89483f5328767df9f3 (diff) | |
download | lufa-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.c | 2 |
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(); |