summaryrefslogtreecommitdiff
path: root/tinyusb/device
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-01-26 01:37:15 +0700
committerhathach <[email protected]>2013-01-26 01:37:15 +0700
commit7edda37518f0b193009c832b4092c357d0d01e96 (patch)
treec6952e1f97b6c89e37968364c5c0a2a88958b3bf /tinyusb/device
parentfdc9a82e8c3dcce08613f0c0e1a773f0c39381e0 (diff)
add more test code for keyboard hid application API
refractor, restructure, rename several thing regarding host, keyboard etc ...
Diffstat (limited to 'tinyusb/device')
-rw-r--r--tinyusb/device/dcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/device/dcd.c b/tinyusb/device/dcd.c
index 3ddcea147..3ec2b951c 100644
--- a/tinyusb/device/dcd.c
+++ b/tinyusb/device/dcd.c
@@ -42,7 +42,7 @@
#include "descriptors.h" // TODO refractor later
#define USB_ROM_SIZE (1024*2) // TODO dcd abstract later
-uint8_t usb_RomDriver_buffer[USB_ROM_SIZE] ATTR_ALIGNED(2048) TUSB_ATTR_RAM_SECTION;
+uint8_t usb_RomDriver_buffer[USB_ROM_SIZE] ATTR_ALIGNED(2048) TUSB_CFG_ATTR_USBRAM;
USBD_HANDLE_T g_hUsb;
static volatile bool isConfigured = false;