MissionControl/bluetooth-mitm/source/controllers/switch_controller.cpp

29 lines
1 KiB
C++
Raw Normal View History

/*
2020-08-26 22:50:34 +00:00
* Copyright (c) 2020 ndeadly
*
2020-08-26 22:50:34 +00:00
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
2020-08-26 22:50:34 +00:00
* This program is distributed in the hope 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2020-08-26 18:52:47 +00:00
#include "switch_controller.hpp"
namespace ams::controller {
2020-08-26 18:52:47 +00:00
Result SwitchController::HandleIncomingReport(const bluetooth::HidReport *report) {
return bluetooth::hid::report::WriteHidReportBuffer(&m_address, report);
}
2020-08-26 18:52:47 +00:00
Result SwitchController::HandleOutgoingReport(const bluetooth::HidReport *report) {
return bluetooth::hid::report::SendHidReport(&m_address, report);
}
}