summaryrefslogtreecommitdiff
path: root/examples/device/cdc_msc_hid/src
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-09-06 16:02:39 +0700
committerhathach <[email protected]>2019-09-06 16:02:39 +0700
commita5b8a67c80e0eaf75e0c57c6a752551682898f5a (patch)
treefb993ff57604d3f3faa2e30adeeaaba0e99fe9ee /examples/device/cdc_msc_hid/src
parentb1296139d0a6f2f062ca8b156a2ce5c81dfa16a9 (diff)
lpc11u37 supported
Diffstat (limited to 'examples/device/cdc_msc_hid/src')
-rw-r--r--examples/device/cdc_msc_hid/src/msc_disk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/device/cdc_msc_hid/src/msc_disk.c b/examples/device/cdc_msc_hid/src/msc_disk.c
index 406baf719..bc61f5d67 100644
--- a/examples/device/cdc_msc_hid/src/msc_disk.c
+++ b/examples/device/cdc_msc_hid/src/msc_disk.c
@@ -30,7 +30,8 @@
// Some MCU doesn't have enough 8KB SRAM to store the whole disk
// We will use Flash as read-only disk
-#if CFG_TUSB_MCU == OPT_MCU_LPC13XX
+// - LPC1347, LPC11uxx
+#if (CFG_TUSB_MCU == OPT_MCU_LPC13XX) || (CFG_TUSB_MCU == OPT_MCU_LPC11UXX)
#define DISK_READONLY
#endif