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
10 lines
223 B
C++
10 lines
223 B
C++
#include "common.h"
|
|
#include <libtwl/sio/sioRtc.h>
|
|
#include "RtcIpcService.h"
|
|
|
|
void RtcIpcService::HandleMessage(u32 data)
|
|
{
|
|
rtc_readDateTime(reinterpret_cast<rtc_datetime_t*>(data << 2));
|
|
SendResponseMessage(1);
|
|
}
|