Minor documentation enhancements.
[pub/USBasp.git] / Demos / Host / ClassDriver / RNDISEthernetHost / RNDISEthernetHost.c
index 67850fc..b793db9 100644 (file)
@@ -171,7 +171,7 @@ void PrintIncomingPackets(void)
                printf_P(PSTR("***PACKET (Size %d)***\r\n"), PacketLength);
        
                for (uint16_t i = 0; i < PacketLength; i++)
-                 printf("%02x ", PacketBuffer[i]);
+                 printf("0x%02x ", PacketBuffer[i]);
 
                printf_P(PSTR("\r\n\r\n"));
                
@@ -236,7 +236,8 @@ void EVENT_USB_Host_HostError(const uint8_t ErrorCode)
 /** Event handler for the USB_DeviceEnumerationFailed event. This indicates that a problem occurred while
  *  enumerating an attached USB device.
  */
-void EVENT_USB_Host_DeviceEnumerationFailed(const uint8_t ErrorCode, const uint8_t SubErrorCode)
+void EVENT_USB_Host_DeviceEnumerationFailed(const uint8_t ErrorCode,
+                                            const uint8_t SubErrorCode)
 {
        printf_P(PSTR(ESC_FG_RED "Dev Enum Error\r\n"
                                 " -- Error Code %d\r\n"