aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/LEDNotifier/LEDNotifier.c
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/LEDNotifier/LEDNotifier.c')
-rw-r--r--Projects/LEDNotifier/LEDNotifier.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c
index f399e1164..59ef80dbb 100644
--- a/Projects/LEDNotifier/LEDNotifier.c
+++ b/Projects/LEDNotifier/LEDNotifier.c
@@ -1,13 +1,13 @@
/*
LUFA Library
- Copyright (C) Dean Camera, 2017.
+ Copyright (C) Dean Camera, 2019.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
- Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com)
+ Copyright 2019 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
@@ -134,7 +134,8 @@ int main(void)
if (Channel & (1 << 7))
SoftPWM_Channel3_Duty = Duty;
- fputc(&USBSerialStream, ColourUpdate);
+ // cppcheck-suppress IOWithoutPositioning
+ fputc(ColourUpdate, &USBSerialStream);
CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
USB_USBTask();