mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Initial commit
This commit is contained in:
14
arm7/source/ipcServices/RtcIpcService.h
Normal file
14
arm7/source/ipcServices/RtcIpcService.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include "ipc/ThreadIpcService.h"
|
||||
#include "ipcChannels.h"
|
||||
|
||||
class RtcIpcService : public ThreadIpcService
|
||||
{
|
||||
u32 _threadStack[128];
|
||||
|
||||
public:
|
||||
RtcIpcService()
|
||||
: ThreadIpcService(IPC_CHANNEL_RTC, 10, _threadStack, sizeof(_threadStack)) { }
|
||||
|
||||
void HandleMessage(u32 data) override;
|
||||
};
|
||||
Reference in New Issue
Block a user