Replace "computer" with "host".

This commit is contained in:
László Monda
2018-04-28 15:00:32 +02:00
parent ebd0e3b762
commit 69143bed9c
2 changed files with 6 additions and 6 deletions

View File

@@ -183,12 +183,12 @@ static void suspendHost(void) {
}
void WakeUpHost(bool sendResume) {
if (sendResume) { // The device should wake up the computer
if (sendResume) { // The device should wake up the host.
// Send resume signal - this will call USB_DeviceKhciControl(khciHandle, kUSB_DeviceControlResume, NULL);
USB_DeviceSetStatus(UsbCompositeDevice.deviceHandle, kUSB_DeviceStatusBus, NULL);
}
IsHostSleeping = false; // The computer is now awake
IsHostSleeping = false; // The host is now awake.
// Restore keyboard backlight and text
KeyBacklightBrightness = oldKeyBacklightBrightness;
@@ -223,13 +223,13 @@ static usb_status_t usbDeviceCallback(usb_device_handle handle, uint32_t event,
break;
case kUSB_DeviceEventSuspend:
if (UsbCompositeDevice.attach) {
suspendHost(); // The computer sends this event when it goes to sleep, so turn off all the LEDs.
suspendHost(); // The host sends this event when it goes to sleep, so turn off all the LEDs.
status = kStatus_USB_Success;
}
break;
case kUSB_DeviceEventResume:
// We will just wake up the computer if there is any activity on the bus.
// The problem is that the computer won't send a resume event when it boots, so the lights will never come back on.
// We will just wake up the host if there is any activity on the bus.
// The problem is that the host won't send a resume event when it boots, so the lights will never come back on.
status = kStatus_USB_Success;
break;
case kUSB_DeviceEventSetConfiguration:

View File

@@ -429,6 +429,6 @@ void UpdateUsbReports(void)
}
if ((previousLayer != LayerId_Base || !IsUsbBasicKeyboardReportSent || !IsUsbMediaKeyboardReportSent || !IsUsbSystemKeyboardReportSent || !IsUsbMouseReportSent) && IsHostSleeping) {
WakeUpHost(true); // Wake up the computer if any key is pressed and the computer is sleeping.
WakeUpHost(true); // Wake up the host if any key is pressed and the computer is sleeping.
}
}