diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.c b/Demos/Device/Incomplete/Sideshow/Sideshow.c
index 92d2d3c129c6bd19644d41f427b18896fbad92c0..e99a26b3696e581d6bbf8a79cc049eba3efba01e 100644
--- a/Demos/Device/Incomplete/Sideshow/Sideshow.c
+++ b/Demos/Device/Incomplete/Sideshow/Sideshow.c
@@ -130,7 +130,7 @@ void EVENT_USB_Device_UnhandledControlRequest(void)
 				Endpoint_ClearSETUP();
 				
 				Endpoint_Write_Control_PStream_LE(DescriptorPointer, DescriptorSize);
-				Endpoint_ClearOUT();				
+				Endpoint_ClearOUT();
 			}
 
 			break;
diff --git a/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.c b/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.c
index 6a2cff409dd91ebf0efa4a23ab24f2bd73b4c2ac..d56a7f7bce5e6318c43126e3a2d863e9b5ac741a 100644
--- a/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.c
+++ b/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.c
@@ -30,6 +30,29 @@
 
 #include "TestAndMeasurement.h"
 
+/** Contains the (usually static) capabilities of the TMC device. This table is requested by the
+ *  host upon enumeration to give it information on what features of the Test and Measurement USB
+ *  Class the device supports.
+ */
+TMC_Capabilities_t Capabilities =
+	{
+		.Status     = TMC_REQUEST_STATUS_SUCCESS,
+		.TMCVersion = VERSION_BCD(1.00),
+		
+		.Interface  =
+			{
+				.ListenOnly             = false,
+				.TalkOnly               = false,
+				.PulseIndicateSupported = true,
+			},
+
+		.Device     =
+			{
+				.SupportsAbortINOnMatch = false,
+			},
+	};
+
+
 /** Main program entry point. This routine contains the overall program flow, including initial
  *  setup of all components and the main program loop.
  */
@@ -141,7 +164,14 @@ void EVENT_USB_Device_UnhandledControlRequest(void)
 		case Req_GetCapabilities:
 			if (USB_ControlRequest.bmRequestType == (REQDIR_DEVICETOHOST | REQTYPE_CLASS | REQREC_INTERFACE))
 			{
-			
+				/* Acknowledge the SETUP packet, ready for data transfer */
+				Endpoint_ClearSETUP();
+					
+				/* Write the device capabilities to the control endpoint */
+				Endpoint_Write_Control_Stream_LE(&Capabilities, sizeof(TMC_Capabilities_t));
+				
+				/* Finalize the stream transfer to send the last packet or clear the host abort */
+				Endpoint_ClearOUT();
 			}
 			
 			break;
@@ -153,4 +183,13 @@ void TMC_Task(void)
 	/* Device must be connected and configured for the task to run */
 	if (USB_DeviceState != DEVICE_STATE_Configured)
 	  return;
+	  
+	Endpoint_SelectEndpoint(TMC_OUT_EPNUM);
+	
+	if (Endpoint_IsOUTReceived())
+	{
+		// TEMP - Indicate data received
+		LEDs_SetAllLEDs(LEDS_ALL_LEDS);
+		Endpoint_ClearOUT();
+	}
 }
diff --git a/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.h b/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.h
index 0a4a629a594229ab3749b04e68e0c3dabbe42fd1..bd9aee6890561aa8b97226bd950d0659b1ecc3b7 100644
--- a/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.h
+++ b/Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.h
@@ -71,6 +71,32 @@
 		#define TMC_REQUEST_STATUS_NOTRANSFER         0x81
 		#define TMC_REQUEST_STATUS_NOCHECKINITIATED   0x82
 		#define TMC_REQUEST_STATUS_CHECKINPROGRESS    0x83
+
+	/* Type Defines */
+		typedef struct
+		{
+			uint8_t  Status;
+			uint8_t  _RESERVED1;
+
+			uint16_t TMCVersion;
+			
+			struct
+			{
+				unsigned char ListenOnly             : 1;
+				unsigned char TalkOnly               : 1;
+				unsigned char PulseIndicateSupported : 1;
+				unsigned char _RESERVED              : 5;
+			} Interface;
+			
+			struct
+			{
+				unsigned char SupportsAbortINOnMatch : 1;
+				unsigned char _RESERVED              : 7;
+			} Device;
+			
+			uint8_t _RESERVED2[6];
+			uint8_t _RESERVED3[12];			
+		} TMC_Capabilities_t;
 		
 	/* Function Prototypes: */
 		void SetupHardware(void);
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt
index 95c96741dd208cdc17a6fe95fafa9d3c396b47f9..d3453326c122a77297930ffc703dbb27bede818d 100644
--- a/LUFA/ManPages/MigrationInformation.txt
+++ b/LUFA/ManPages/MigrationInformation.txt
@@ -10,7 +10,7 @@
  *  to the next version released. It does not indicate all new additions to the library in each version change, only
  *  areas relevant to making older projects compatible with the API changes of each new release.
  *
- * \section Sec_Migration100513 Migrating from 100513 to XXXXXX
+ * \section Sec_MigrationXXXXXX Migrating from 100513 to XXXXXX
  *
  *  <b>Non-USB Library Components</b>
  *    - The Dataflash board driver stub file has changed, as dataflash functions previously located in the internal