fatal: Implement BacklightControlTask

This commit is contained in:
Michael Scire 2018-11-10 03:16:13 -08:00
parent e96eaa3d7c
commit 5649b6d63f
4 changed files with 67 additions and 1 deletions

View file

@ -82,6 +82,11 @@ void __appInit(void) {
std::abort();
}
rc = lblInitialize();
if (R_FAILED(rc)) {
std::abort();
}
rc = psmInitialize();
if (R_FAILED(rc)) {
std::abort();
@ -99,6 +104,7 @@ void __appExit(void) {
/* Cleanup services. */
spsmExit();
psmExit();
lblExit();
pcvExit();
bpcExit();
pminfoExit();