From ad9225bdd34230e13333be5d4c29e4f96abc9b2b Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Thu, 4 Jan 2018 20:12:48 +1100 Subject: Update copyrights for 2018. --- Projects/LEDNotifier/LEDNotifier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Projects/LEDNotifier/LEDNotifier.c') diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index f399e1164..b164ed006 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, 2018. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* - Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + Copyright 2018 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 -- cgit v1.2.3 From fd024de89fd4a313ff3b3715e878b402822796ed Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 17 Jun 2018 16:13:18 +1000 Subject: Fix LEDNotifier project writing to the incorrect output stream. --- Projects/LEDNotifier/LEDNotifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Projects/LEDNotifier/LEDNotifier.c') 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(); -- cgit v1.2.3 From eec7bb2476649ad329164454afd874bd079d3f57 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 9 Dec 2018 14:06:44 +1100 Subject: Fix static analysis false warnings. --- Projects/LEDNotifier/LEDNotifier.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Projects/LEDNotifier/LEDNotifier.c') diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index cfad0c288..f252b3dbe 100644 --- a/Projects/LEDNotifier/LEDNotifier.c +++ b/Projects/LEDNotifier/LEDNotifier.c @@ -134,6 +134,7 @@ int main(void) if (Channel & (1 << 7)) SoftPWM_Channel3_Duty = Duty; + // cppcheck-suppress IOWithoutPositioning fputc(ColourUpdate, &USBSerialStream); CDC_Device_USBTask(&VirtualSerial_CDC_Interface); -- cgit v1.2.3 From 101ed6b74e0d6549e53a7c8216147af37ffc70df Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Tue, 8 Jan 2019 19:59:41 +1100 Subject: Documentation: Update copyrights to 2019. --- Projects/LEDNotifier/LEDNotifier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Projects/LEDNotifier/LEDNotifier.c') diff --git a/Projects/LEDNotifier/LEDNotifier.c b/Projects/LEDNotifier/LEDNotifier.c index f252b3dbe..59ef80dbb 100644 --- a/Projects/LEDNotifier/LEDNotifier.c +++ b/Projects/LEDNotifier/LEDNotifier.c @@ -1,13 +1,13 @@ /* LUFA Library - Copyright (C) Dean Camera, 2018. + Copyright (C) Dean Camera, 2019. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* - Copyright 2018 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 -- cgit v1.2.3