diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-11-16 12:07:38 -0500 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-04-11 16:56:51 -0400 |
commit | ef61050e57256bc65474b7c741a8b356d1fae7db (patch) | |
tree | f43199c5477bfb80b63afdf6244b28287d63a409 /libmaple | |
parent | 5f06399e4ca2266841f888d3efd2740a2fdcc6fb (diff) | |
download | librambutan-ef61050e57256bc65474b7c741a8b356d1fae7db.tar.gz librambutan-ef61050e57256bc65474b7c741a8b356d1fae7db.zip |
usb_cdcacm.c: Fix warning for non-LeafLabs boards.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/usb/usb_cdcacm.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libmaple/usb/usb_cdcacm.c b/libmaple/usb/usb_cdcacm.c index b41753a..dc7b79e 100644 --- a/libmaple/usb/usb_cdcacm.c +++ b/libmaple/usb/usb_cdcacm.c @@ -59,12 +59,8 @@ #if !(defined(BOARD_maple) || defined(BOARD_maple_RET6) || \ defined(BOARD_maple_mini) || defined(BOARD_maple_native)) - -#warning ("Warning! USB VCOM relies on LeafLabs board-specific " \ - "configuration right now. If you want, you can pretend " \ - "you're one of our boards; i.e., #define BOARD_maple, " \ - "BOARD_maple_mini, etc. according to what matches your MCU " \ - "best." +#warning USB CDC ACM relies on LeafLabs board-specific configuration.\ + You may have problems on non-LeafLabs boards. #endif static void vcomDataTxCb(void); |