mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
30 lines
No EOL
636 B
C++
30 lines
No EOL
636 B
C++
#pragma once
|
|
#include <optional>
|
|
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
// More circular dependencies
|
|
class Kernel;
|
|
|
|
class NwmUdsService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::NWM_UDS;
|
|
Memory& mem;
|
|
Kernel& kernel;
|
|
MAKE_LOG_FUNCTION(log, nwmUdsLogger)
|
|
|
|
bool initialized = false;
|
|
std::optional<Handle> eventHandle = std::nullopt;
|
|
|
|
// Service commands
|
|
void initializeWithVersion(u32 messagePointer);
|
|
|
|
public:
|
|
NwmUdsService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |