Fixed small error in serial_usb.h.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4893 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-12-08 18:44:26 +00:00
parent 7e1edd8d16
commit 19e8e1950d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,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