Fixed FS input channel count warning text

This commit is contained in:
Ross Owen
2016-10-06 12:48:37 +01:00
parent 17e27a8c09
commit 1e8ea9a771

View File

@@ -65,11 +65,11 @@ Warnings relating to configuration defines located in this XC source file rather
/* Sanity check on FS channel counts */
#if (NUM_USB_CHAN_OUT_FS > NUM_USB_CHAN_OUT)
#error NUM_USB_CHAN_OUT expected to be less than or equal to NUM_USB_CHAN_OUT
#error NUM_USB_CHAN_OUT_FS expected to be less than or equal to NUM_USB_CHAN_OUT
#endif
#if (NUM_USB_CHAN_IN_FS > NUM_USB_CHAN_IN)
#error NUM_USB_CHAN_IN expected to be less than or equal to NUM_USB_CHAN_IN
#error NUM_USB_CHAN_IN_FS expected to be less than or equal to NUM_USB_CHAN_IN
#endif