Remove serial driver use from the AVRISP project now that it is no longer needed.
[pub/USBasp.git] / Demos / Host / Incomplete / BluetoothHost / Lib / BluetoothHCICommands.c
index 54291bf..ffec031 100644 (file)
@@ -42,11 +42,11 @@ static uint8_t Bluetooth_SendHCICommand(void* Parameters, uint8_t ParamLength)
 \r
        USB_ControlRequest = (USB_Request_Header_t)\r
                {\r
-                       bmRequestType: (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_DEVICE),\r
-                       bRequest:      0,\r
-                       wValue:        0,\r
-                       wIndex:        0,\r
-                       wLength:       sizeof(CommandBuffer)\r
+                       .bmRequestType = (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_DEVICE),\r
+                       .bRequest      = 0,\r
+                       .wValue        = 0,\r
+                       .wIndex        = 0,\r
+                       .wLength       = sizeof(CommandBuffer)\r
                };\r
                \r
        memset(CommandBuffer, 0x00, sizeof(CommandBuffer));\r
@@ -398,7 +398,7 @@ void Bluetooth_ProcessHCICommands(void)
                        {\r
                                while (!(Bluetooth_GetNextHCIEventHeader()))\r
                                {                               \r
-                                       if (USB_DeviceState == DEVICE_STATE_Unattached)\r
+                                       if (USB_HostState == HOST_STATE_Unattached)\r
                                          return;\r
                                }\r
 \r