mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-16 21:16:59 +02:00
[hle] stubbed extra services from (parental controls and stuff) fw21 (#3175)
Adds more Firmware 20+ related service commands. Renames existing service commands according to switchbrew docs, Unstubs new parental service stuff. Signed-off-by: lizzie lizzie@eden-emu.dev Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3175 Reviewed-by: Caio Oliveira <caiooliveirafarias0@gmail.com> Reviewed-by: Lizzie <lizzie@eden-emu.dev> Co-authored-by: Maufeat <sahyno1996@gmail.com> Co-committed-by: Maufeat <sahyno1996@gmail.com>
This commit is contained in:
parent
959f72297d
commit
1d869e8495
30 changed files with 713 additions and 339 deletions
|
|
@ -12,7 +12,7 @@
|
|||
#include "common/common_types.h"
|
||||
#include "common/expected.h"
|
||||
|
||||
// All the constants in this file come from http://switchbrew.org/index.php?title=Error_codes
|
||||
// All the constants in this file come from <http://switchbrew.org/index.php?title=Error_codes>
|
||||
|
||||
/**
|
||||
* Identifies the module which caused the error. Error codes can be propagated through a call
|
||||
|
|
@ -87,6 +87,7 @@ enum class ErrorModule : u32 {
|
|||
AM = 128,
|
||||
PlayReport = 129,
|
||||
AHID = 130,
|
||||
APPLET = 131,
|
||||
Qlaunch = 132,
|
||||
PCV = 133,
|
||||
USBPD = 134,
|
||||
|
|
@ -113,8 +114,8 @@ enum class ErrorModule : u32 {
|
|||
NPNSHTTPSTREAM = 155,
|
||||
IDLE = 156,
|
||||
ARP = 157,
|
||||
SWKBD = 158,
|
||||
BOOT = 159,
|
||||
UPDATER = 158,
|
||||
SWKBD = 159,
|
||||
NetDiag = 160,
|
||||
NFCMifare = 161,
|
||||
UserlandAssert = 162,
|
||||
|
|
@ -125,7 +126,8 @@ enum class ErrorModule : u32 {
|
|||
BGTC = 167,
|
||||
UserlandCrash = 168,
|
||||
SASBUS = 169,
|
||||
PI = 170,
|
||||
PL = 170,
|
||||
CDMSC = 171,
|
||||
AudioCtrl = 172,
|
||||
LBL = 173,
|
||||
JIT = 175,
|
||||
|
|
@ -137,23 +139,30 @@ enum class ErrorModule : u32 {
|
|||
Dauth = 181,
|
||||
STDFU = 182,
|
||||
DBG = 183,
|
||||
CDACM = 184,
|
||||
TCAP = 185,
|
||||
DHCPS = 186,
|
||||
SPI = 187,
|
||||
AVM = 188,
|
||||
PWM = 189,
|
||||
DNSServer = 190,
|
||||
RTC = 191,
|
||||
Regulator = 192,
|
||||
LED = 193,
|
||||
HTCTool = 194,
|
||||
SIO = 195,
|
||||
PCM = 196,
|
||||
CLKRST = 197,
|
||||
POWCTL = 198,
|
||||
HIDDriver = 199,
|
||||
DMA = 200,
|
||||
AudioOld = 201,
|
||||
HID = 202,
|
||||
LDN = 203,
|
||||
CS = 204,
|
||||
Irsensor = 205,
|
||||
Capture = 206,
|
||||
MM = 207,
|
||||
Manu = 208,
|
||||
ATK = 209,
|
||||
WEB = 210,
|
||||
|
|
@ -166,19 +175,24 @@ enum class ErrorModule : u32 {
|
|||
MigrationLdcServ = 217,
|
||||
HIDBUS = 218,
|
||||
ENS = 219,
|
||||
ND = 220,
|
||||
NDD = 221,
|
||||
ToyCon = 222,
|
||||
WebSocket = 223,
|
||||
SocketIO = 224,
|
||||
DCDMTP = 227,
|
||||
PGL = 228,
|
||||
Notification = 229,
|
||||
INS = 230,
|
||||
LP2P = 231,
|
||||
RCD = 232,
|
||||
LCM40607 = 233,
|
||||
ICM40607 = 233,
|
||||
PRC = 235,
|
||||
TMAHTC = 237,
|
||||
ECTX = 238,
|
||||
BridgeCtrl = 237,
|
||||
ErrContext = 238,
|
||||
MNPP = 239,
|
||||
HSHL = 240,
|
||||
RINGCON = 241,
|
||||
CAPMTP = 242,
|
||||
DP2HDMI = 244,
|
||||
Cradle = 245,
|
||||
|
|
@ -186,6 +200,8 @@ enum class ErrorModule : u32 {
|
|||
Icm42607p = 248,
|
||||
NDRM = 250,
|
||||
Fst2 = 251,
|
||||
TS = 253,
|
||||
SPLAY = 260,
|
||||
Nex = 306,
|
||||
NPLN = 321,
|
||||
TSPM = 499,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue