diff options
| author | hathach <[email protected]> | 2019-05-15 18:21:41 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-05-15 18:21:41 +0700 |
| commit | c4b153925012e7c4fe28c745e5022820798a160d (patch) | |
| tree | 01c7d3ee839746922ddade2a372310c6fa055999 /tests/support | |
| parent | 449a631a4a888146e8f68b6960f7fdb579fc5edf (diff) | |
| parent | 6e9324e29c3c2cc7ae36c0d7cbdb037e92ec9614 (diff) | |
Merge pull request #66 from hathach/develop
support makefile device example for all boards
Diffstat (limited to 'tests/support')
| -rw-r--r-- | tests/support/descriptor_test.c | 2 | ||||
| -rw-r--r-- | tests/support/descriptor_test.h | 2 | ||||
| -rw-r--r-- | tests/support/ehci_controller_fake.c | 2 | ||||
| -rw-r--r-- | tests/support/ehci_controller_fake.h | 2 | ||||
| -rw-r--r-- | tests/support/tusb_callback.h | 2 | ||||
| -rw-r--r-- | tests/support/tusb_config.h | 8 | ||||
| -rw-r--r-- | tests/support/type_helper.h | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/tests/support/descriptor_test.c b/tests/support/descriptor_test.c index f4b1a6d17..b51c81711 100644 --- a/tests/support/descriptor_test.c +++ b/tests/support/descriptor_test.c @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/support/descriptor_test.h b/tests/support/descriptor_test.h index 38cb1782f..4ec082ed6 100644 --- a/tests/support/descriptor_test.h +++ b/tests/support/descriptor_test.h @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/support/ehci_controller_fake.c b/tests/support/ehci_controller_fake.c index cabb4402b..710f0e615 100644 --- a/tests/support/ehci_controller_fake.c +++ b/tests/support/ehci_controller_fake.c @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/support/ehci_controller_fake.h b/tests/support/ehci_controller_fake.h index 53860608f..7b21d6ca6 100644 --- a/tests/support/ehci_controller_fake.h +++ b/tests/support/ehci_controller_fake.h @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/support/tusb_callback.h b/tests/support/tusb_callback.h index 48a779d07..3e793dd9e 100644 --- a/tests/support/tusb_callback.h +++ b/tests/support/tusb_callback.h @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/support/tusb_config.h b/tests/support/tusb_config.h index 0c8957fff..000391ad2 100644 --- a/tests/support/tusb_config.h +++ b/tests/support/tusb_config.h @@ -1,7 +1,7 @@ /*
* The MIT License (MIT)
*
- * Copyright (c) 2018, hathach (tinyusb.org)
+ * Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -47,7 +47,7 @@ #define CFG_TUH_HID_KEYBOARD 1
#define CFG_TUH_HID_MOUSE 1
#define CFG_TUH_MSC 1
-#define CFG_TUSB_HOST_HID_GENERIC 0
+#define CFG_TUSB_HOST_HID_GENERIC 0
#define CFG_TUH_CDC 1
#define CFG_TUH_CDC_RNDIS 0
@@ -71,9 +71,9 @@ // COMMON CONFIGURATION
//--------------------------------------------------------------------+
-#define CFG_TUSB_DEBUG 3
+#define CFG_TUSB_DEBUG 1
-#define CFG_TUSB_OS OPT_OS_NONE
+#define CFG_TUSB_OS OPT_OS_NONE
#define CFG_TUSB_MEM_SECTION
#ifdef __cplusplus
diff --git a/tests/support/type_helper.h b/tests/support/type_helper.h index 8d9d8c016..c836f244c 100644 --- a/tests/support/type_helper.h +++ b/tests/support/type_helper.h @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2018, hathach (tinyusb.org) + * Copyright (c) 2019 Ha Thach (tinyusb.org) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal |
