diff --git a/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.c b/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.c
index d35d22af1afec33aa702f518eea4d268a9e4239b..28d7b172d33e2bbbedad8cc1873d796bf1aa1898 100644
--- a/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.c
+++ b/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.c
@@ -146,7 +146,7 @@ int main(void)
 				USB_HostState = HOST_STATE_Configured;
 				break;
 			case HOST_STATE_Configured:
-				// TODO
+				PrintIncommingPackets();
 			
 				break;
 		}
@@ -156,6 +156,24 @@ int main(void)
 	}
 }
 
+/** Prints incomming packets from the attached RNDIS device to the serial port. */
+void PrintIncommingPackets(void)
+{
+	uint16_t PacketLength;
+	
+	RNDIS_Host_ReadPacket(&Ethernet_RNDIS_Interface, &PacketBuffer, &PacketLength);
+	
+	if (PacketLength)
+	{
+		printf("***PACKET (Size %d)***\r\n", PacketLength);
+	
+		for (uint16_t i = 0; i < PacketLength; i++)
+		  printf("%02x ", PacketBuffer[i]);
+
+		printf("\r\n\r\n");		
+	}
+}
+
 /** Configures the board hardware and chip peripherals for the demo's functionality. */
 void SetupHardware(void)
 {
diff --git a/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.h b/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.h
index ce0474a547647da5ac1ce32a1aa6aee3bd341b33..5f84980243eadd7e1062e40c397302db845ca7f6 100644
--- a/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.h
+++ b/Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.h
@@ -65,6 +65,7 @@
 		
 	/* Function Prototypes: */
 		void SetupHardware(void);
+		void PrintIncommingPackets(void);
 	
 		void EVENT_USB_Host_HostError(const uint8_t ErrorCode);
 		void EVENT_USB_Host_DeviceAttached(void);
diff --git a/LUFA/ManPages/DeviceSupport.txt b/LUFA/ManPages/DeviceSupport.txt
index 832edc9bc23f187892cf61cbfcb5ec88d6b4210e..2ee1bf5ac2971f6c15639477b4276af49bf4324c 100644
--- a/LUFA/ManPages/DeviceSupport.txt
+++ b/LUFA/ManPages/DeviceSupport.txt
@@ -29,8 +29,8 @@
  *   - ATAVRUSBRF01
  *   - XPLAIN (AT90USB1287 only)
  *
- *  Currently supported third-party board (via hardware drivers):
+ *  Currently supported third-party boards (via hardware drivers):
  *   - BUMBLEB (using officially recommended peripheral layout)
- *   - Any Other Custom User Boards (with Board Drivers, \see Page_WritingBoardDrivers)
+ *   - Any Other Custom User Boards (with Board Drivers if desired, see \ref Page_WritingBoardDrivers)
  */
  
\ No newline at end of file