[HID] Stub more gyroscope calls

This commit is contained in:
wheremyfoodat
2022-10-11 23:49:55 +03:00
parent d395fcd3cc
commit 85b7ebae6f
4 changed files with 33 additions and 2 deletions

View File

@@ -17,6 +17,8 @@ class HIDService {
// Service commands
void enableAccelerometer(u32 messagePointer);
void enableGyroscopeLow(u32 messagePointer);
void getGyroscopeLowCalibrateParam(u32 messagePointer);
void getGyroscopeCoefficient(u32 messagePointer);
void getIPCHandles(u32 messagePointer);
public:

View File

@@ -12,6 +12,7 @@ class NDMService {
// Service commands
void overrideDefaultDaemons(u32 messagePointer);
void suspendDaemons(u32 messagePointer);
void suspendScheduler(u32 messagePointer);
public:
NDMService(Memory& mem) : mem(mem) {}