mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
26 lines
No EOL
576 B
C++
26 lines
No EOL
576 B
C++
#pragma once
|
|
#include "config.hpp"
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
namespace MCU {
|
|
class HWCService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::MCU_HWC;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, mcuLogger)
|
|
|
|
const EmulatorConfig& config;
|
|
|
|
// Service commands
|
|
void getBatteryLevel(u32 messagePointer);
|
|
|
|
public:
|
|
HWCService(Memory& mem, const EmulatorConfig& config) : mem(mem), config(config) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
};
|
|
} // namespace MCU
|