summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hidbus/starlink.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-05-03 01:41:03 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2022-04-16 07:49:21 +0200
commitb2359f1527df30e151a44221f4276e6b14ec0bca (patch)
treee8b887327b39ad3a07dde8d7d9c85a55e4ff7494 /src/core/hle/service/hid/hidbus/starlink.cpp
parentMerge pull request #8205 from liamwhite/n64-misc (diff)
downloadyuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.gz
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.bz2
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.lz
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.xz
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.zst
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.zip
Diffstat (limited to 'src/core/hle/service/hid/hidbus/starlink.cpp')
-rw-r--r--src/core/hle/service/hid/hidbus/starlink.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/hidbus/starlink.cpp b/src/core/hle/service/hid/hidbus/starlink.cpp
new file mode 100644
index 000000000..3175c48da
--- /dev/null
+++ b/src/core/hle/service/hid/hidbus/starlink.cpp
@@ -0,0 +1,51 @@
+// Copyright 2021 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hid/emulated_controller.h"
+#include "core/hid/hid_core.h"
+#include "core/hle/service/hid/hidbus/starlink.h"
+
+namespace Service::HID {
+constexpr u8 DEVICE_ID = 0x28;
+
+Starlink::Starlink(Core::HID::HIDCore& hid_core_, KernelHelpers::ServiceContext& service_context_)
+ : HidbusBase(service_context_) {}
+Starlink::~Starlink() = default;
+
+void Starlink::OnInit() {
+ return;
+}
+
+void Starlink::OnRelease() {
+ return;
+};
+
+void Starlink::OnUpdate() {
+ if (!is_activated) {
+ return;
+ }
+ if (!device_enabled) {
+ return;
+ }
+ if (!polling_mode_enabled || !is_transfer_memory_set) {
+ return;
+ }
+
+ LOG_ERROR(Service_HID, "Polling mode not supported {}", polling_mode);
+}
+
+u8 Starlink::GetDeviceId() const {
+ return DEVICE_ID;
+}
+
+std::vector<u8> Starlink::GetReply() const {
+ return {};
+}
+
+bool Starlink::SetCommand(const std::vector<u8>& data) {
+ LOG_ERROR(Service_HID, "Command not implemented");
+ return false;
+}
+
+} // namespace Service::HID