You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
15 lines
312 B
C++
15 lines
312 B
C++
#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;
|
|
};
|