mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-26 22:30:21 +00:00
btdrv-mitm: initialise hid:dbg service
This commit is contained in:
parent
a08c8a2798
commit
10c9f31f75
1 changed files with 2 additions and 0 deletions
|
@ -61,6 +61,7 @@ void __appInit(void) {
|
||||||
R_ABORT_UNLESS(pmdmntInitialize());
|
R_ABORT_UNLESS(pmdmntInitialize());
|
||||||
R_ABORT_UNLESS(pminfoInitialize());
|
R_ABORT_UNLESS(pminfoInitialize());
|
||||||
R_ABORT_UNLESS(btdrvInitialize());
|
R_ABORT_UNLESS(btdrvInitialize());
|
||||||
|
R_ABORT_UNLESS(hiddbgInitialize());
|
||||||
});
|
});
|
||||||
|
|
||||||
R_ABORT_UNLESS(fsdevMountSdmc());
|
R_ABORT_UNLESS(fsdevMountSdmc());
|
||||||
|
@ -70,6 +71,7 @@ void __appInit(void) {
|
||||||
|
|
||||||
void __appExit(void) {
|
void __appExit(void) {
|
||||||
fsdevUnmountAll();
|
fsdevUnmountAll();
|
||||||
|
hiddbgExit();
|
||||||
btdrvExit();
|
btdrvExit();
|
||||||
pminfoExit();
|
pminfoExit();
|
||||||
pmdmntExit();
|
pmdmntExit();
|
||||||
|
|
Loading…
Reference in a new issue