+/** Contains the (usually static) capabilities of the TMC device. This table is requested by the\r
+ * host upon enumeration to give it information on what features of the Test and Measurement USB\r
+ * Class the device supports.\r
+ */\r
+TMC_Capabilities_t Capabilities =\r
+ {\r
+ .Status = TMC_REQUEST_STATUS_SUCCESS,\r
+ .TMCVersion = VERSION_BCD(1.00),\r
+ \r
+ .Interface =\r
+ {\r
+ .ListenOnly = false,\r
+ .TalkOnly = false,\r
+ .PulseIndicateSupported = true,\r
+ },\r
+\r
+ .Device =\r
+ {\r
+ .SupportsAbortINOnMatch = false,\r
+ },\r
+ };\r
+\r
+\r