From 3ab98a64bf3c0d1181ca9f19490c113cf208c1d0 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 8 Dec 2012 18:44:18 +0000 Subject: [PATCH] Fixed small error in serial_usb.h. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4892 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/serial_usb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/hal/include/serial_usb.h b/os/hal/include/serial_usb.h index ad355f471..7f87c9f90 100644 --- a/os/hal/include/serial_usb.h +++ b/os/hal/include/serial_usb.h @@ -66,7 +66,7 @@ /* Derived constants and error checks. */ /*===========================================================================*/ -#if !HAL_USE_USB && !CH_USE_QUEUES && !CH_USE_EVENTS +#if !HAL_USE_USB || !CH_USE_QUEUES || !CH_USE_EVENTS #error "Serial over USB Driver requires HAL_USE_USB, CH_USE_QUEUES, " "CH_USE_EVENTS" #endif