From 25f6cee73ba1a8a1f75456a352bcb864fcad92b7 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 18 Jan 2013 11:49:51 +0700 Subject: add DEVICE_ROM_DRIVER_ADDR macro in hal to point to rom driver add add TUSB_ATTR_RAM_SECTION in tinyusb_config.h to abtract usb ram placement to application remove power_api.h (mcu dependency) --- tinyusb/class/cdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tinyusb/class') diff --git a/tinyusb/class/cdc.c b/tinyusb/class/cdc.c index 5fc1cd5fd..0c59b0186 100644 --- a/tinyusb/class/cdc.c +++ b/tinyusb/class/cdc.c @@ -320,7 +320,7 @@ TUSB_Error_t tusb_cdc_configured(USBD_HANDLE_T hUsb) fifo_init (&ffTX, qBuffer[0], CDC_BUFFER_SIZE, false, USB0_IRQn); // TODO USB1 TX is non-overwritable fifo_init (&ffRX, qBuffer[1], CDC_BUFFER_SIZE, true, USB0_IRQn); // RX is overwritable #else - #error No MCU defined" // TODO asbtract MCU + #error No MCU defined // TODO asbtract MCU #endif return tERROR_NONE; -- cgit v1.3.1