CI: Don't use multiple jobs when building under CI, so that output is consistent.
[pub/USBasp.git] / Projects / LEDNotifier / LEDNotifier.c
index b164ed0..f252b3d 100644 (file)
@@ -134,7 +134,8 @@ int main(void)
                if (Channel & (1 << 7))
                  SoftPWM_Channel3_Duty = Duty;
 
                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();
 
                CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
                USB_USBTask();