You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.9 KiB
64 lines
1.9 KiB
7 years ago
|
/* -*- mode: c++ -*-
|
||
7 years ago
|
* Kaleidoscope-HostPowerManagement -- Host power management support plugin.
|
||
6 years ago
|
* Copyright (C) 2017, 2018 Keyboard.io, Inc.
|
||
7 years ago
|
*
|
||
6 years ago
|
* This program is free software: you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License as published by the Free Software
|
||
|
* Foundation, version 3.
|
||
7 years ago
|
*
|
||
6 years ago
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
* details.
|
||
7 years ago
|
*
|
||
6 years ago
|
* You should have received a copy of the GNU General Public License along with
|
||
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||
7 years ago
|
*/
|
||
|
|
||
5 years ago
|
#include "kaleidoscope/Runtime.h"
|
||
7 years ago
|
#include <Kaleidoscope-HostPowerManagement.h>
|
||
7 years ago
|
#include <Kaleidoscope-LEDControl.h>
|
||
|
|
||
|
// This is a terrible hack until Arduino#6964 gets implemented.
|
||
|
// It makes the `_usbSuspendState` symbol available to us.
|
||
6 years ago
|
extern uint8_t _usbSuspendState;
|
||
7 years ago
|
|
||
|
namespace kaleidoscope {
|
||
6 years ago
|
namespace plugin {
|
||
7 years ago
|
|
||
7 years ago
|
bool HostPowerManagement::was_suspended_ = false;
|
||
|
bool HostPowerManagement::initial_suspend_ = true;
|
||
7 years ago
|
|
||
7 years ago
|
EventHandlerResult HostPowerManagement::beforeEachCycle() {
|
||
6 years ago
|
|
||
|
#ifdef __AVR__
|
||
7 years ago
|
if ((_usbSuspendState & (1 << SUSPI))) {
|
||
7 years ago
|
if (!initial_suspend_) {
|
||
|
if (!was_suspended_) {
|
||
|
was_suspended_ = true;
|
||
7 years ago
|
hostPowerManagementEventHandler(Suspend);
|
||
7 years ago
|
} else {
|
||
7 years ago
|
hostPowerManagementEventHandler(Sleep);
|
||
7 years ago
|
}
|
||
|
}
|
||
|
} else {
|
||
7 years ago
|
if (initial_suspend_)
|
||
|
initial_suspend_ = false;
|
||
|
if (was_suspended_) {
|
||
|
was_suspended_ = false;
|
||
7 years ago
|
hostPowerManagementEventHandler(Resume);
|
||
7 years ago
|
}
|
||
|
}
|
||
6 years ago
|
#endif
|
||
7 years ago
|
|
||
|
return EventHandlerResult::OK;
|
||
|
}
|
||
|
|
||
6 years ago
|
}
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
__attribute__((weak)) void hostPowerManagementEventHandler(kaleidoscope::plugin::HostPowerManagement::Event event) {
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
kaleidoscope::plugin::HostPowerManagement HostPowerManagement;
|