Settings services: Difference between revisions
No edit summary |
No edit summary |
||
| (23 intermediate revisions by 4 users not shown) | |||
| Line 61: | Line 61: | ||
== GetKeyCodeMap == | == GetKeyCodeMap == | ||
Takes a type-0x16 output buffer containing KeyCodeMap, official sw uses fixed size 0x1000. This is | Takes a type-0x16 output buffer containing KeyCodeMap, official sw uses fixed size 0x1000. This is related to the USB HID keyboard. | ||
The returned buffer consists of a 0x20-byte header followed by an array of key mapping structures. | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset || Size || Description | |||
|- | |||
| 0x0 || 0x4 || Magic number? (0x01000001) | |||
|- | |||
| 0x4 || 0x4 || Entry count per key (3 for US English, 4 for German as it includes AltGr mappings) | |||
|- | |||
| 0x8 || 0x4 || Map count | |||
|- | |||
| 0xC || 0x4 || Layout ID (e.g. 3 = German QWERTZ) | |||
|- | |||
| 0x10 || 0x10 || Reserved | |||
|- | |||
| 0x20 || 0x8 * MapCount || Array of <code>KeyMapEntry</code> structures. Indexed by the standard USB HID Usage ID (Keyboard/Keypad page 0x07). | |||
|- | |||
| ... || ... || Padding (remaining space up to 0x1000) | |||
|} | |||
=== KeyMapEntry === | |||
Structure defining the output characters and modifier behaviors for a single physical key. Size may vary depending on the symbol count per key. | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset || Size || Description | |||
|- | |||
| 0x0 || 0x2 || Normal char: UTF-16 code point when no modifiers are pressed. Dead keys map directly to Unicode combining characters (like U+0301 for combining acute accent). | |||
|- | |||
| 0x2 || 0x2 || Flags: Bitmask for character behavior and modifier rules. | |||
|- | |||
| 0x4 || 0x2 || Shift char: UTF-16 code point emitted when Shift is held. | |||
|- | |||
| 0x6 || 0x2 || AltGr char: UTF-16 code point emitted when AltGr is held (only included if the 'entry count per key' = 4) | |||
|} | |||
The Flags field changes how state changes are handled (like Caps Lock or NumLock) for that specific code point: | |||
* 0x1001: Standard character. Uses standard Shift and Caps Lock rules. | |||
* 0x1000: Static/dead character (e.g., Space). | |||
* 0x20FF: Keypad modifier. State influenced by NumLock. | |||
== GetFirmwareVersionForDebug == | == GetFirmwareVersionForDebug == | ||
| Line 97: | Line 139: | ||
| 23 || [9.0.0+] SetMemoryUsageRateFlag | | 23 || [9.0.0+] SetMemoryUsageRateFlag | ||
|- | |- | ||
| 24 || [20.0.0+] | | 24 || [20.0.0+] CommitSettings | ||
|- | |||
| 27 || [21.0.0+] SetHttpAuthConfigs | |||
|} | |} | ||
| Line 121: | Line 165: | ||
! Cmd || Name | ! Cmd || Name | ||
|- | |- | ||
| 0 || [[#GetBluetoothBdAddress]] | | 0 || [S1] [[#GetBluetoothBdAddress]] | ||
|- | |- | ||
| 1 || [[#GetConfigurationId1]] | | 1 || [[#GetConfigurationId1]] | ||
|- | |- | ||
| 2 || [[#GetAccelerometerOffset]] | | 2 || [S1] [[#GetAccelerometerOffset]] | ||
|- | |- | ||
| 3 || [[#GetAccelerometerScale]] | | 3 || [S1] [[#GetAccelerometerScale]] | ||
|- | |- | ||
| 4 || [[#GetGyroscopeOffset]] | | 4 || [S1] [[#GetGyroscopeOffset]] | ||
|- | |- | ||
| 5 || [[#GetGyroscopeScale]] | | 5 || [S1] [[#GetGyroscopeScale]] | ||
|- | |- | ||
| 6 || [[#GetWirelessLanMacAddress]] | | 6 || [[#GetWirelessLanMacAddress]] | ||
|- | |- | ||
| 7 || [[#GetWirelessLanCountryCodeCount]] | | 7 || [S1] [[#GetWirelessLanCountryCodeCount]] | ||
|- | |- | ||
| 8 || [[#GetWirelessLanCountryCodes]] | | 8 || [S1] [[#GetWirelessLanCountryCodes]] | ||
|- | |- | ||
| 9 || [[#GetSerialNumber]] | | 9 || [[#GetSerialNumber]] | ||
|- | |- | ||
| 10 || [[#SetInitialSystemAppletProgramId]] | | 10 || [S1] [[#SetInitialSystemAppletProgramId]] | ||
|- | |- | ||
| 11 || [[#SetOverlayDispProgramId]] | | 11 || [S1] [[#SetOverlayDispProgramId]] | ||
|- | |- | ||
| 12 || [[#GetBatteryLot]] | | 12 || [[#GetBatteryLot]] | ||
|- | |- | ||
| 14 || [[#GetEciDeviceCertificate]] | | 14 || [S1] [[#GetEciDeviceCertificate]] | ||
|- | |||
| 15 || [S1] [[#GetEticketDeviceCertificate]] | |||
|- | |||
| 16 || [S1] [[#GetSslKey]] | |||
|- | |- | ||
| | | 17 || [S1] [[#GetSslCertificate]] | ||
|- | |- | ||
| | | 18 || [S1] [[#GetGameCardKey]] | ||
|- | |- | ||
| | | 19 || [S1] [[#GetGameCardCertificate]] | ||
|- | |- | ||
| | | 20 || [S1] [[#GetEciDeviceKey]] | ||
|- | |- | ||
| | | 21 || [S1] [[#GetEticketDeviceKey]] | ||
|- | |- | ||
| | | 22 || [S1] [[#GetSpeakerParameter]] | ||
|- | |- | ||
| | | 23 || [S1] [4.0.0+] [[#GetLcdVendorId]] | ||
|- | |- | ||
| | | 24 || [S1] [5.0.0+] [[#GetEciDeviceCertificate2]] | ||
|- | |- | ||
| | | 25 || [S1] [5.0.0+] [[#GetEciDeviceKey2]] | ||
|- | |- | ||
| | | 26 || [S1] [5.0.0+] [[#GetAmiiboKey]] | ||
|- | |- | ||
| | | 27 || [S1] [5.0.0+] [[#GetAmiiboEcqvCertificate]] | ||
|- | |- | ||
| | | 28 || [S1] [5.0.0+] [[#GetAmiiboEcdsaCertificate]] | ||
|- | |- | ||
| | | 29 || [S1] [5.0.0+] [[#GetAmiiboEcqvBlsKey]] | ||
|- | |- | ||
| | | 30 || [S1] [5.0.0+] [[#GetAmiiboEcqvBlsCertificate]] | ||
|- | |- | ||
| | | 31 || [S1] [5.0.0+] [[#GetAmiiboEcqvBlsRootCertificate]] | ||
|- | |- | ||
| | | 32 || [S1] [5.0.0+] [[#GetUsbTypeCPowerSourceCircuitVersion]] | ||
|- | |- | ||
| | | 33 || [S1] [8.1.1+] [[#GetAnalogStickModuleTypeL]] | ||
|- | |- | ||
| | | 34 || [S1] [8.1.1+] [[#GetAnalogStickModelParameterL]] | ||
|- | |- | ||
| | | 35 || [S1] [8.1.1+] [[#GetAnalogStickFactoryCalibrationL]] | ||
|- | |- | ||
| | | 36 || [S1] [8.1.1+] [[#GetAnalogStickModuleTypeR]] | ||
|- | |- | ||
| | | 37 || [S1] [8.1.1+] [[#GetAnalogStickModelParameterR]] | ||
|- | |- | ||
| | | 38 || [S1] [8.1.1+] [[#GetAnalogStickFactoryCalibrationR]] | ||
|- | |- | ||
| | | 39 || [S1] [8.1.1+] [[#GetConsoleSixAxisSensorModuleType]] | ||
|- | |- | ||
| | | 40 || [S1] [8.1.1+] [[#GetConsoleSixAxisSensorHorizontalOffset]] | ||
|- | |- | ||
| | | 41 || [S1] [6.0.0+] [[#GetBatteryVersion]] | ||
|- | |- | ||
| | | 42 || [S1] [10.0.0+] [[#GetDeviceId]] | ||
|- | |- | ||
| | | 43 || [S1] [10.0.0+] [[#GetConsoleSixAxisSensorMountType]] | ||
|- | |- | ||
| | | 44 || [S2] GetCpDeviceKeyFileSize | ||
|- | |- | ||
| | | 45 || [S2] GetCpDeviceKeyFile | ||
| | |- | ||
| 46 || [S2] GetCpCertificateFileSize | |||
|- | |||
| 47 || [S2] GetCpCertificateFile | |||
|- | |||
| 48 || [S2] GetRaCertificateFileSize | |||
|- | |||
| 49 || [S2] GetRaCertificateFile | |||
|- | |||
| 50 || [S2] GetRaOemEkFileSize | |||
|- | |||
| 51 || [S2] GetRaOemEkFile | |||
|- | |||
| 52 || [S2] GetRaPkaKekFileSize | |||
|- | |||
| 53 || [S2] GetRaPkaKekFile | |||
|- | |||
| 54 || [S2] GetGcNxPkKekFileSize | |||
|- | |||
| 55 || [S2] GetGcNxPkKekFile | |||
|- | |||
| 56 || [S2] GetGcUniqueImportKeyFileSize | |||
|- | |||
| 57 || [S2] GetGcUniqueImportKeyFile | |||
|- | |||
| 58 || [S2] GetGcUniqueEncryptionKeyFileSize | |||
|- | |||
| 59 || [S2] GetGcUniqueEncryptionKeyFile | |||
|- | |||
| 60 || [S2] GetGcCertificateFileSize | |||
|- | |||
| 61 || [S2] GetGcCertificateFile | |||
|- | |||
| 62 || [S2] GetGcUniqueKeyAFileSize | |||
|- | |||
| 63 || [S2] GetGcUniqueKeyAFile | |||
|- | |||
| 64 || [S2] GetGcUniqueKeyBFileSize | |||
|- | |||
| 65 || [S2] GetGcUniqueKeyBFile | |||
|- | |||
| 66 || [S2] GetGcNxKeyFileSize | |||
|- | |||
| 67 || [S2] GetGcNxKeyFile | |||
|- | |||
| 68 || [S2] GetGcNxCertificateFileSize | |||
|- | |||
| 69 || [S2] GetGcNxCertificateFile | |||
|- | |||
| 70 || [S2] GetWirelessLanRegulatoryDomain | |||
|- | |||
| 71 || [S2] GetDeviceId | |||
|- | |||
| 72 || [S2] GetBluetoothBdAddressSet | |||
|- | |||
| 73 || [S2] GetToolModel | |||
|- | |||
| 74 || [S2] IsRadioForbidden | |||
|- | |||
| 75 || [S2] GetDisplayModuleId | |||
|- | |||
| 76 || [S2] GetAnalogStickModuleTypeL | |||
|- | |||
| 77 || [S2] GetAnalogStickModelParameterL | |||
|- | |||
| 78 || [S2] GetAnalogStickFactoryCalibrationL | |||
|- | |||
| 79 || [S2] GetAnalogStickModuleTypeR | |||
|- | |||
| 80 || [S2] GetAnalogStickModelParameterR | |||
|- | |||
| 81 || [S2] GetAnalogStickFactoryCalibrationR | |||
|- | |||
| 82 || [S2] GetConsoleSixAxisSensorModuleType | |||
|- | |||
| 83 || [S2] GetConsoleSixAxisSensorMountType | |||
|- | |||
| 84 || [S2] GetConsoleSixAxisSensorFactoryCalibration | |||
|- | |||
| 85 || [S2] GetOta0DeviceKeyFileSize | |||
|- | |||
| 86 || [S2] GetOta0DeviceKeyFile | |||
|- | |||
| 87 || [S2] GetOta0CertificateFileSize | |||
|- | |||
| 88 || [S2] GetOta0CertificateFile | |||
|- | |||
| 89 || [S2] GetOta1DeviceKeyFileSize | |||
|- | |||
| 90 || [S2] GetOta1DeviceKeyFile | |||
|- | |||
| 91 || [S2] GetOta1CertificateFileSize | |||
|- | |||
| 92 || [S2] GetOta1CertificateFile | |||
|- | |||
| 93 || [S2] GetOta2DeviceKeyFileSize | |||
|- | |||
| 94 || [S2] GetOta2DeviceKeyFile | |||
|- | |||
| 95 || [S2] GetOta2CertificateFileSize | |||
|- | |||
| 96 || [S2] GetOta2CertificateFile | |||
|- | |||
| 97 || [S2] GetJc0CertificateFileSize | |||
|- | |||
| 98 || [S2] GetJc0CertificateFile | |||
|- | |||
| 99 || [S2] GetJc0PrivateKeyFileSize | |||
|- | |||
| 100 || [S2] GetJc0PrivateKeyFile | |||
|- | |||
| 101 || [S2] GetJc0PkKekFileSize | |||
|- | |||
| 102 || [S2] GetJc0PkKekFile | |||
|- | |||
| 103 || [S2] GetJc1CertificateFileSize | |||
|- | |||
| 104 || [S2] GetJc1CertificateFile | |||
|- | |||
| 105 || [S2] GetJc1PrivateKeyFileSize | |||
|- | |||
| 106 || [S2] GetJc1PrivateKeyFile | |||
|- | |||
| 107 || [S2] GetJc1PkKekFileSize | |||
|- | |||
| 108 || [S2] GetJc1PkKekFile | |||
|- | |||
| 109 || [S2] GetWirelessLanPowerTable | |||
|- | |||
| 110 || [S2] GetConsoleSixAxisSensorFactoryAccelerationLog | |||
|- | |||
| 111 || [S2] GetDrmCertificateFileSize | |||
|- | |||
| 112 || [S2] GetDrmCertificateFile | |||
|- | |||
| 113 || [S2] GetCalibrationTimeStampUtc | |||
|- | |||
| 114 || [S2] GetEncryptedSecretDeviceIdFileSize | |||
|- | |||
| 115 || [S2] GetEncryptedSecretDeviceIdFile | |||
|- | |||
| 116 || [S2] GetEncryptedSecretDeviceIdEncryptionKeyFileSize | |||
|- | |||
| 117 || [S2] GetEncryptedSecretDeviceIdEncryptionKeyFile | |||
|- | |||
| 118 || [S2] | |||
|- | |||
| 119 || [22.0.0+] GetRegionCode | |||
|} | |||
Used for accessing data [[Calibration|calibrated]] at the factory. | |||
== | == GetBluetoothBdAddress == | ||
No input. Returns a [[#BdAddress|BdAddress]]. | |||
Returns | == GetConfigurationId1 == | ||
No input. Returns a [[#ConfigurationId1|ConfigurationId1]]. | |||
== GetAccelerometerOffset == | |||
No input. Returns a [[#AccelerometerOffset|AccelerometerOffset]]. | |||
== | == GetAccelerometerScale == | ||
No input. Returns a [[#AccelerometerScale|AccelerometerScale]]. | |||
== GetGyroscopeOffset == | |||
No input. Returns a [[#GyroscopeOffset|GyroscopeOffset]]. | |||
== | == GetGyroscopeScale == | ||
No input. Returns a [[#GyroscopeScale|GyroscopeScale]]. | |||
Returns | == GetWirelessLanMacAddress == | ||
No input. Returns a [[#MacAddress|MacAddress]]. | |||
== | == GetWirelessLanCountryCodeCount == | ||
No input. Returns a s32 '''OutCount'''. | |||
== | == GetWirelessLanCountryCodes == | ||
Takes a type-0x16 output buffer containing an array of [[#CountryCode|CountryCode]]. Returns a s32 '''OutCount'''. | |||
Returns | == GetSerialNumber == | ||
No input. Returns a [[#SerialNumber|SerialNumber]]. | |||
== | == SetInitialSystemAppletProgramId == | ||
Takes | Takes an input [[NCM_services#ProgramId|ProgramId]]. No output. | ||
== SetOverlayDispProgramId == | |||
Takes an input [[NCM_services#ProgramId|ProgramId]]. No output. | |||
== | == GetBatteryLot == | ||
No input. Returns a [[# | No input. Returns a [[#BatteryLot|BatteryLot]]. | ||
== | == GetEciDeviceCertificate == | ||
Takes a type-0x16 output buffer containing a [[#EccB233DeviceCertificate|EccB233DeviceCertificate]]. No output. | |||
Returns the device certificate (ECC signed). This is identical to 3DS DeviceCert/CTCert besides the strings. NIM loads the DeviceId from this. | |||
== | == GetEticketDeviceCertificate == | ||
Takes a type-0x16 output buffer containing a [[#Rsa2048DeviceCertificate|Rsa2048DeviceCertificate]]. No output. | |||
Returns the ETicket certificate (RSA signed). | |||
== | == GetSslKey == | ||
Takes a type-0x16 output buffer containing a [[#SslKey|SslKey]]. No output. | |||
Returns the extended SSL key (0x130 bytes) from [[Calibration#CAL0|CAL0]]. If the extended key is not programmed then it falls back to the normal SSL key (0x110 bytes). | |||
Used by SSL-sysmodule, see [[SSL_services|here]]. | |||
== | == GetSslCertificate == | ||
Takes a type-0x16 output buffer containing a [[#SslCertificate|SslCertificate]]. No output. | |||
Used by SSL-sysmodule, see [[SSL_services|here]]. | |||
== | == GetGameCardKey == | ||
Takes a type-0x16 output buffer containing a [[#GameCardKey|GameCardKey]]. No output. | |||
Returns the extended GameCard key (0x130 bytes) from [[Calibration#CAL0|CAL0]]. If the extended key is not programmed then it falls back to the normal GameCard key (0x110 bytes). | |||
== | == GetGameCardCertificate == | ||
Takes a type-0x16 output buffer containing a [[#GameCardCertificate|GameCardCertificate]]. No output. | |||
== | == GetEciDeviceKey == | ||
No input. Returns an [[# | No input. Returns an [[#EccB233DeviceKey|EccB233DeviceKey]]. | ||
Returns the extended device ECC-B233 key (0x50 bytes) from [[Calibration#CAL0|CAL0]]. If the extended key is not programmed then it falls back to the normal device ECC-B233 key (0x30 bytes). | |||
== | == GetEticketDeviceKey == | ||
Takes a type-0x16 output buffer containing a [[#Rsa2048DeviceKey|Rsa2048DeviceKey]]. No output. | |||
Returns the extended ETicket RSA-2048 key (0x240 bytes) from [[Calibration#CAL0|CAL0]]. If the extended key is not programmed then it falls back to the normal ETicket RSA-2048 key (0x220 bytes). | |||
== | == GetSpeakerParameter == | ||
No input. Returns a [[ | No input. Returns a [[#SpeakerParameter|SpeakerParameter]]. | ||
== | == GetLcdVendorId == | ||
No input. Returns a [[# | No input. Returns a [[Calibration#LcdVendorId|LcdVendorId]]. | ||
== | == GetEciDeviceCertificate2 == | ||
Same as [[#GetEciDeviceCertificate]], but returns a [[#Rsa2048DeviceCertificate|RSA-2048]] variant of the device certificate. | |||
== | == GetEciDeviceKey2 == | ||
Same as [[#GetEciDeviceKey]], but returns a [[#Rsa2048DeviceKey|RSA-2048]] variant of the device key. | |||
== | == GetAmiiboKey == | ||
No input. Returns | No input. Returns an [[#AmiiboKey|AmiiboKey]]. | ||
= | == GetAmiiboEcqvCertificate == | ||
No input. Returns an [[#AmiiboEcqvCertificate|AmiiboEcqvCertificate]]. | |||
== GetAmiiboEcdsaCertificate == | |||
No input. Returns an [[#AmiiboEcdsaCertificate|AmiiboEcdsaCertificate]]. | |||
== GetAmiiboEcqvBlsKey == | |||
No input. Returns an [[#AmiiboEcqvBlsKey|AmiiboEcqvBlsKey]]. | |||
== GetAmiiboEcqvBlsCertificate == | |||
No input. Returns an [[#AmiiboEcqvBlsCertificate|AmiiboEcqvBlsCertificate]]. | |||
== GetAmiiboEcqvBlsRootCertificate == | |||
No input. Returns an [[#AmiiboEcqvBlsRootCertificate|AmiiboEcqvBlsRootCertificate]]. | |||
== GetUsbTypeCPowerSourceCircuitVersion == | |||
No input. Returns an [[Calibration#UsbTypeCPowerSourceCircuit|UsbTypeCPowerSourceCircuitVersion]]. | |||
== GetAnalogStickModuleTypeL == | |||
| | No input. Returns an [[Calibration#AnalogStickModuleType|AnalogStickModuleType]]. | ||
== GetAnalogStickModelParameterL == | |||
No input. Returns an [[#AnalogStickModelParameter|AnalogStickModelParameter]]. | |||
== GetAnalogStickFactoryCalibrationL == | |||
| | No input. Returns an [[#AnalogStickFactoryCalibration|AnalogStickFactoryCalibration]]. | ||
== GetAnalogStickModuleTypeR == | |||
No input. Returns an [[Calibration#AnalogStickModuleType|AnalogStickModuleType]]. | |||
| | == GetAnalogStickModelParameterR == | ||
No input. Returns an [[#AnalogStickModelParameter|AnalogStickModelParameter]]. | |||
| | |||
== GetAnalogStickFactoryCalibrationR == | |||
No input. Returns an [[#AnalogStickFactoryCalibration|AnalogStickFactoryCalibration]]. | |||
| | |||
== GetConsoleSixAxisSensorModuleType == | |||
No input. Returns a [[Calibration#ConsoleSixAxisSensorModuleType|ConsoleSixAxisSensorModuleType]]. | |||
| | |||
== GetConsoleSixAxisSensorHorizontalOffset == | |||
No input. Returns a [[#ConsoleSixAxisSensorHorizontalOffset|ConsoleSixAxisSensorHorizontalOffset]]. | |||
| | |||
== GetBatteryVersion == | |||
No input. Returns a [[Calibration#BatteryVersion|BatteryVersion]]. | |||
== GetDeviceId == | |||
No input. Returns an u64 '''DeviceId''' by reading and converting the hexadecimal string at offset 0xC6 inside [[#EccB233DeviceCertificate]] or [[#Rsa2048DeviceCertificate]]. | |||
| | |||
== GetConsoleSixAxisSensorMountType == | |||
No input. Returns a [[Calibration#ConsoleSixAxisSensorMountType|ConsoleSixAxisSensorMountType]]. | |||
= set:sys = | |||
| | This is "nn::settings::ISystemSettingsServer". | ||
{| class="wikitable" border="1" | |||
|- | |- | ||
| | ! Cmd || Name | ||
|- | |- | ||
| | | 0 || [[#SetLanguageCode]] | ||
|- | |- | ||
| | | 1 || SetNetworkSettings | ||
|- | |- | ||
| | | 2 || GetNetworkSettings | ||
|- | |- | ||
| 21 || [[#GetEulaVersions]] | | 3 || [S1] [[#GetFirmwareVersion]] | ||
|- | |||
| 4 || [3.0.0+] GetFirmwareVersion2 | |||
|- | |||
| 5 || [S1] [5.0.0+] GetFirmwareVersionDigest | |||
|- | |||
| 7 || GetLockScreenFlag | |||
|- | |||
| 8 || SetLockScreenFlag | |||
|- | |||
| 9 || GetBacklightSettings | |||
|- | |||
| 10 || SetBacklightSettings | |||
|- | |||
| 11 || [S1] SetBluetoothDevicesSettings | |||
|- | |||
| 12 || [S1] GetBluetoothDevicesSettings | |||
|- | |||
| 13 || GetExternalSteadyClockSourceId | |||
|- | |||
| 14 || SetExternalSteadyClockSourceId | |||
|- | |||
| 15 || GetUserSystemClockContext | |||
|- | |||
| 16 || SetUserSystemClockContext | |||
|- | |||
| 17 || [[#GetAccountSettings]] | |||
|- | |||
| 18 || [[#SetAccountSettings]] | |||
|- | |||
| 19 || GetAudioVolume | |||
|- | |||
| 20 || SetAudioVolume | |||
|- | |||
| 21 || [[#GetEulaVersions]] | |||
|- | |- | ||
| 22 || [[#SetEulaVersions]] | | 22 || [[#SetEulaVersions]] | ||
| Line 410: | Line 606: | ||
| 24 || [[#SetColorSetId]] | | 24 || [[#SetColorSetId]] | ||
|- | |- | ||
| 25 || GetConsoleInformationUploadFlag | | 25 || [S1] GetConsoleInformationUploadFlag | ||
|- | |- | ||
| 26 || SetConsoleInformationUploadFlag | | 26 || [S1] SetConsoleInformationUploadFlag | ||
|- | |- | ||
| 27 || GetAutomaticApplicationDownloadFlag | | 27 || [S1] GetAutomaticApplicationDownloadFlag | ||
|- | |- | ||
| 28 || SetAutomaticApplicationDownloadFlag | | 28 || [S1] SetAutomaticApplicationDownloadFlag | ||
|- | |- | ||
| 29 || [[#GetNotificationSettings]] | | 29 || [[#GetNotificationSettings]] | ||
| Line 454: | Line 650: | ||
| 48 || SetQuestFlag | | 48 || SetQuestFlag | ||
|- | |- | ||
| 49 || [[#GetDataDeletionSettings]] | | 49 || [S1] [[#GetDataDeletionSettings]] | ||
|- | |- | ||
| 50 || [[#SetDataDeletionSettings]] | | 50 || [S1] [[#SetDataDeletionSettings]] | ||
|- | |- | ||
| 51 || GetInitialSystemAppletProgramId | | 51 || [S1] GetInitialSystemAppletProgramId | ||
|- | |- | ||
| 52 || GetOverlayDispProgramId | | 52 || [S1] GetOverlayDispProgramId | ||
|- | |- | ||
| 53 || GetDeviceTimeZoneLocationName | | 53 || [[#GetDeviceTimeZoneLocationName]] | ||
|- | |- | ||
| 54 || SetDeviceTimeZoneLocationName | | 54 || [[#SetDeviceTimeZoneLocationName]] | ||
|- | |- | ||
| 55 || [[#GetWirelessCertificationFileSize]] | | 55 || [S1] [[#GetWirelessCertificationFileSize]] | ||
|- | |- | ||
| 56 || [[#GetWirelessCertificationFile]] | | 56 || [S1] [[#GetWirelessCertificationFile]] | ||
|- | |- | ||
| 57 || [[#SetRegionCode]] | | 57 || [[#SetRegionCode]] | ||
| Line 486: | Line 682: | ||
| 64 || [[#SetPrimaryAlbumStorage]] | | 64 || [[#SetPrimaryAlbumStorage]] | ||
|- | |- | ||
| 65 || GetUsb30EnableFlag | | 65 || [S1] GetUsb30EnableFlag | ||
|- | |- | ||
| 66 || SetUsb30EnableFlag | | 66 || [S1] SetUsb30EnableFlag | ||
|- | |- | ||
| 67 || [[#GetBatteryLot]] | | 67 || [[#GetBatteryLot]] | ||
| Line 506: | Line 702: | ||
| 74 || SetWirelessLanEnableFlag | | 74 || SetWirelessLanEnableFlag | ||
|- | |- | ||
| 75 || [[#GetInitialLaunchSettings]] | | 75 || [S1] [[#GetInitialLaunchSettings]] | ||
|- | |- | ||
| 76 || [[#SetInitialLaunchSettings]] | | 76 || [S1] [[#SetInitialLaunchSettings]] | ||
|- | |- | ||
| 77 || [[#GetDeviceNickName]] | | 77 || [[#GetDeviceNickName]] | ||
| Line 516: | Line 712: | ||
| 79 || [[#GetProductModel]] | | 79 || [[#GetProductModel]] | ||
|- | |- | ||
| 80 || GetLdnChannel | | 80 || [S1] GetLdnChannel | ||
|- | |- | ||
| 81 || SetLdnChannel | | 81 || [S1] SetLdnChannel | ||
|- | |- | ||
| 82 || AcquireTelemetryDirtyFlagEventHandle | | 82 || AcquireTelemetryDirtyFlagEventHandle | ||
| Line 550: | Line 746: | ||
| 96 || [2.0.0+] SetAutoUpdateEnableFlag | | 96 || [2.0.0+] SetAutoUpdateEnableFlag | ||
|- | |- | ||
| 97 || [2.0.0+] GetNxControllerSettings | | 97 || [S1] [2.0.0+] GetNxControllerSettings | ||
|- | |- | ||
| 98 || [2.0.0+] SetNxControllerSettings | | 98 || [S1] [2.0.0+] SetNxControllerSettings | ||
|- | |- | ||
| 99 || [2.0.0+] GetBatteryPercentageFlag | | 99 || [2.0.0+] GetBatteryPercentageFlag | ||
| Line 558: | Line 754: | ||
| 100 || [2.0.0+] SetBatteryPercentageFlag | | 100 || [2.0.0+] SetBatteryPercentageFlag | ||
|- | |- | ||
| 101 || [2.0.0+] GetExternalRtcResetFlag | | 101 || [S1] [2.0.0+] GetExternalRtcResetFlag | ||
|- | |- | ||
| 102 || [2.0.0+] SetExternalRtcResetFlag | | 102 || [S1] [2.0.0+] SetExternalRtcResetFlag | ||
|- | |- | ||
| 103 || [3.0.0+] GetUsbFullKeyEnableFlag | | 103 || [3.0.0+] GetUsbFullKeyEnableFlag | ||
| Line 578: | Line 774: | ||
| 110 || [3.0.0+] SetHeadphoneVolumeWarningCount | | 110 || [3.0.0+] SetHeadphoneVolumeWarningCount | ||
|- | |- | ||
| 111 || [3.0.0+] GetBluetoothAfhEnableFlag | | 111 || [S1] [3.0.0+] GetBluetoothAfhEnableFlag | ||
|- | |- | ||
| 112 || [3.0.0+] SetBluetoothAfhEnableFlag | | 112 || [S1] [3.0.0+] SetBluetoothAfhEnableFlag | ||
|- | |- | ||
| 113 || [3.0.0+] GetBluetoothBoostEnableFlag | | 113 || [S1] [3.0.0+] GetBluetoothBoostEnableFlag | ||
|- | |- | ||
| 114 || [3.0.0+] SetBluetoothBoostEnableFlag | | 114 || [S1] [3.0.0+] SetBluetoothBoostEnableFlag | ||
|- | |- | ||
| 115 || [3.0.0+] GetInRepairProcessEnableFlag | | 115 || [3.0.0+] GetInRepairProcessEnableFlag | ||
| Line 590: | Line 786: | ||
| 116 || [3.0.0+] SetInRepairProcessEnableFlag | | 116 || [3.0.0+] SetInRepairProcessEnableFlag | ||
|- | |- | ||
| 117 || [3.0.0+] GetHeadphoneVolumeUpdateFlag | | 117 || [S1] [3.0.0+] GetHeadphoneVolumeUpdateFlag | ||
|- | |- | ||
| 118 || [3.0.0+] SetHeadphoneVolumeUpdateFlag | | 118 || [S1] [3.0.0+] SetHeadphoneVolumeUpdateFlag | ||
|- | |- | ||
| 119 || [3.0.0-14.1.2] NeedsToUpdateHeadphoneVolume | | 119 || [3.0.0-14.1.2] NeedsToUpdateHeadphoneVolume | ||
| Line 612: | Line 808: | ||
| 127 || [4.0.0+] [[#SetAppletLaunchFlags]] | | 127 || [4.0.0+] [[#SetAppletLaunchFlags]] | ||
|- | |- | ||
| 128 || [4.0.0+] GetConsoleSixAxisSensorAccelerationBias | | 128 || [S1] [4.0.0+] GetConsoleSixAxisSensorAccelerationBias | ||
|- | |- | ||
| 129 || [4.0.0+] SetConsoleSixAxisSensorAccelerationBias | | 129 || [S1] [4.0.0+] SetConsoleSixAxisSensorAccelerationBias | ||
|- | |- | ||
| 130 || [4.0.0+] GetConsoleSixAxisSensorAngularVelocityBias | | 130 || [S1] [4.0.0+] GetConsoleSixAxisSensorAngularVelocityBias | ||
|- | |- | ||
| 131 || [4.0.0+] SetConsoleSixAxisSensorAngularVelocityBias | | 131 || [S1] [4.0.0+] SetConsoleSixAxisSensorAngularVelocityBias | ||
|- | |- | ||
| 132 || [4.0.0+] GetConsoleSixAxisSensorAccelerationGain | | 132 || [S1] [4.0.0+] GetConsoleSixAxisSensorAccelerationGain | ||
|- | |- | ||
| 133 || [4.0.0+] SetConsoleSixAxisSensorAccelerationGain | | 133 || [S1] [4.0.0+] SetConsoleSixAxisSensorAccelerationGain | ||
|- | |- | ||
| 134 || [4.0.0+] GetConsoleSixAxisSensorAngularVelocityGain | | 134 || [S1] [4.0.0+] GetConsoleSixAxisSensorAngularVelocityGain | ||
|- | |- | ||
| 135 || [4.0.0+] SetConsoleSixAxisSensorAngularVelocityGain | | 135 || [S1] [4.0.0+] SetConsoleSixAxisSensorAngularVelocityGain | ||
|- | |- | ||
| 136 || [4.0.0+] [[#GetKeyboardLayout]] | | 136 || [4.0.0+] [[#GetKeyboardLayout]] | ||
| Line 642: | Line 838: | ||
| 142 || [5.0.0+] SetRequiresRunRepairTimeReviser | | 142 || [5.0.0+] SetRequiresRunRepairTimeReviser | ||
|- | |- | ||
| 143 || [5.0.0+] SetBlePairingSettings | | 143 || [S1] [5.0.0+] SetBlePairingSettings | ||
|- | |- | ||
| 144 || [5.0.0+] GetBlePairingSettings | | 144 || [S1] [5.0.0+] GetBlePairingSettings | ||
|- | |- | ||
| 145 || [5.0.0+] GetConsoleSixAxisSensorAngularVelocityTimeBias | | 145 || [S1] [5.0.0+] GetConsoleSixAxisSensorAngularVelocityTimeBias | ||
|- | |- | ||
| 146 || [5.0.0+] SetConsoleSixAxisSensorAngularVelocityTimeBias | | 146 || [S1] [5.0.0+] SetConsoleSixAxisSensorAngularVelocityTimeBias | ||
|- | |- | ||
| 147 || [5.0.0+] GetConsoleSixAxisSensorAngularAcceleration | | 147 || [S1] [5.0.0+] GetConsoleSixAxisSensorAngularAcceleration | ||
|- | |- | ||
| 148 || [5.0.0+] SetConsoleSixAxisSensorAngularAcceleration | | 148 || [S1] [5.0.0+] SetConsoleSixAxisSensorAngularAcceleration | ||
|- | |- | ||
| 149 || [5.0.0+] [[#GetRebootlessSystemUpdateVersion]] | | 149 || [5.0.0+] [[#GetRebootlessSystemUpdateVersion]] | ||
| Line 664: | Line 860: | ||
| 153 || [6.0.0+] SetUserSystemClockAutomaticCorrectionUpdatedTime | | 153 || [6.0.0+] SetUserSystemClockAutomaticCorrectionUpdatedTime | ||
|- | |- | ||
| 154 || [6.0.0+] GetAccountOnlineStorageSettings | | 154 || [S1] [6.0.0+] GetAccountOnlineStorageSettings | ||
|- | |- | ||
| 155 || [6.0.0+] SetAccountOnlineStorageSettings | | 155 || [S1] [6.0.0+] SetAccountOnlineStorageSettings | ||
|- | |- | ||
| 156 || [6.0.0+] GetPctlReadyFlag | | 156 || [S1] [6.0.0+] GetPctlReadyFlag | ||
|- | |- | ||
| 157 || [6.0.0+] SetPctlReadyFlag | | 157 || [S1] [6.0.0+] SetPctlReadyFlag | ||
|- | |- | ||
| 158 || [8.1.1+] GetAnalogStickUserCalibrationL | | 158 || [S1] [8.1.1+] GetAnalogStickUserCalibrationL | ||
|- | |- | ||
| 159 || [8.1.1+] SetAnalogStickUserCalibrationL | | 159 || [S1] [8.1.1+] SetAnalogStickUserCalibrationL | ||
|- | |- | ||
| 160 || [8.1.1+] GetAnalogStickUserCalibrationR | | 160 || [S1] [8.1.1+] GetAnalogStickUserCalibrationR | ||
|- | |- | ||
| 161 || [8.1.1+] SetAnalogStickUserCalibrationR | | 161 || [S1] [8.1.1+] SetAnalogStickUserCalibrationR | ||
|- | |- | ||
| 162 || [6.0.0+] GetPtmBatteryVersion | | 162 || [6.0.0+] GetPtmBatteryVersion | ||
| Line 692: | Line 888: | ||
| 167 || [6.0.0+] SetUsb30DeviceEnableFlag | | 167 || [6.0.0+] SetUsb30DeviceEnableFlag | ||
|- | |- | ||
| 168 || [7.0.0+] GetThemeId | | 168 || [S1] [7.0.0+] GetThemeId | ||
|- | |- | ||
| 169 || [7.0.0+] SetThemeId | | 169 || [S1] [7.0.0+] SetThemeId | ||
|- | |- | ||
| 170 || [7.0.0+] [[#GetChineseTraditionalInputMethod]] | | 170 || [7.0.0+] [[#GetChineseTraditionalInputMethod]] | ||
| Line 706: | Line 902: | ||
| 174 || [8.1.1+] [[#GetHomeMenuScheme]] | | 174 || [8.1.1+] [[#GetHomeMenuScheme]] | ||
|- | |- | ||
| 175 || [7.0.0+] GetThemeSettings | | 175 || [S1] [7.0.0+] GetThemeSettings | ||
|- | |- | ||
| 176 || [7.0.0+] SetThemeSettings | | 176 || [S1] [7.0.0+] SetThemeSettings | ||
|- | |- | ||
| 177 || [7.0.0+] GetThemeKey | | 177 || [S1] [7.0.0+] GetThemeKey | ||
|- | |- | ||
| 178 || [7.0.0+] SetThemeKey | | 178 || [S1] [7.0.0+] SetThemeKey | ||
|- | |- | ||
| 179 || [8.0.0+] GetZoomFlag | | 179 || [8.0.0+] GetZoomFlag | ||
| Line 718: | Line 914: | ||
| 180 || [8.0.0+] SetZoomFlag | | 180 || [8.0.0+] SetZoomFlag | ||
|- | |- | ||
| 181 || [8.0.0+] [[#GetT]] | | 181 || [S1] [8.0.0+] [[#GetT]] | ||
|- | |- | ||
| 182 || [8.0.0+] [[#SetT]] | | 182 || [S1] [8.0.0+] [[#SetT]] | ||
|- | |- | ||
| 183 || [9.0.0+] [[#GetPlatformRegion]] | | 183 || [9.0.0+] [[#GetPlatformRegion]] | ||
| Line 730: | Line 926: | ||
| 186 || [9.0.0+] [[#GetMemoryUsageRateFlag]] | | 186 || [9.0.0+] [[#GetMemoryUsageRateFlag]] | ||
|- | |- | ||
| 187 || [9.0.0+] [[#GetTouchScreenMode]] | | 187 || [S1] [9.0.0+] [[#GetTouchScreenMode]] | ||
|- | |- | ||
| 188 || [9.0.0+] [[#SetTouchScreenMode]] | | 188 || [S1] [9.0.0+] [[#SetTouchScreenMode]] | ||
|- | |- | ||
| 189 || [10.0.0+] [[#GetButtonConfigSettingsFull]] | | 189 || [S1] [10.0.0+] [[#GetButtonConfigSettingsFull]] | ||
|- | |- | ||
| 190 || [10.0.0+] [[#SetButtonConfigSettingsFull]] | | 190 || [S1] [10.0.0+] [[#SetButtonConfigSettingsFull]] | ||
|- | |- | ||
| 191 || [10.0.0+] [[#GetButtonConfigSettingsEmbedded]] | | 191 || [S1] [10.0.0+] [[#GetButtonConfigSettingsEmbedded]] | ||
|- | |- | ||
| 192 || [10.0.0+] [[#SetButtonConfigSettingsEmbedded]] | | 192 || [S1] [10.0.0+] [[#SetButtonConfigSettingsEmbedded]] | ||
|- | |- | ||
| 193 || [10.0.0+] [[#GetButtonConfigSettingsLeft]] | | 193 || [S1] [10.0.0+] [[#GetButtonConfigSettingsLeft]] | ||
|- | |- | ||
| 194 || [10.0.0+] [[#SetButtonConfigSettingsLeft]] | | 194 || [S1] [10.0.0+] [[#SetButtonConfigSettingsLeft]] | ||
|- | |- | ||
| 195 || [10.0.0+] [[#GetButtonConfigSettingsRight]] | | 195 || [S1] [10.0.0+] [[#GetButtonConfigSettingsRight]] | ||
|- | |- | ||
| 196 || [10.0.0+] [[#SetButtonConfigSettingsRight]] | | 196 || [S1] [10.0.0+] [[#SetButtonConfigSettingsRight]] | ||
|- | |- | ||
| 197 || [10.0.0+] [[#GetButtonConfigRegisteredSettingsEmbedded]] | | 197 || [S1] [10.0.0+] [[#GetButtonConfigRegisteredSettingsEmbedded]] | ||
|- | |- | ||
| 198 || [10.0.0+] [[#SetButtonConfigRegisteredSettingsEmbedded]] | | 198 || [S1] [10.0.0+] [[#SetButtonConfigRegisteredSettingsEmbedded]] | ||
|- | |- | ||
| 199 || [10.0.0+] [[#GetButtonConfigRegisteredSettings]] | | 199 || [S1] [10.0.0+] [[#GetButtonConfigRegisteredSettings]] | ||
|- | |- | ||
| 200 || [10.0.0+] [[#SetButtonConfigRegisteredSettings]] | | 200 || [S1] [10.0.0+] [[#SetButtonConfigRegisteredSettings]] | ||
|- | |- | ||
| 201 || [10.1.0+] [[#GetFieldTestingFlag]] | | 201 || [10.1.0+] [[#GetFieldTestingFlag]] | ||
| Line 766: | Line 962: | ||
| 204 || [11.0.0+] SetPanelCrcMode | | 204 || [11.0.0+] SetPanelCrcMode | ||
|- | |- | ||
| 205 || [13.0.0+] GetNxControllerSettingsEx | | 205 || [S1] [13.0.0+] GetNxControllerSettingsEx | ||
|- | |- | ||
| 206 || [13.0.0+] SetNxControllerSettingsEx | | 206 || [S1] [13.0.0+] SetNxControllerSettingsEx | ||
|- | |- | ||
| 207 || [14.0.0+] GetHearingProtectionSafeguardFlag | | 207 || [S1] [14.0.0+] GetHearingProtectionSafeguardFlag | ||
|- | |- | ||
| 208 || [14.0.0+] SetHearingProtectionSafeguardFlag | | 208 || [S1] [14.0.0+] SetHearingProtectionSafeguardFlag | ||
|- | |- | ||
| 209 || [14.0.0+] GetHearingProtectionSafeguardRemainingTime | | 209 || [S1] [14.0.0+] GetHearingProtectionSafeguardRemainingTime | ||
|- | |- | ||
| 210 || [14.0.0+] SetHearingProtectionSafeguardRemainingTime | | 210 || [S1] [14.0.0+] SetHearingProtectionSafeguardRemainingTime | ||
|- | |||
| 211 || [S2] GetWirelessCertificationHtmlFileSize | |||
|- | |||
| 212 || [S2] GetWirelessCertificationHtmlFile | |||
|- | |||
| 213 || [S2] GetWirelessCertificationJpegFileSize | |||
|- | |||
| 214 || [S2] GetWirelessCertificationJpegFile | |||
|- | |||
| 215 || [S2] GetHighContrastFlag | |||
|- | |||
| 216 || [S2] SetHighContrastFlag | |||
|- | |||
| 217 || [S2] GetTextToSpeechFlag | |||
|- | |||
| 218 || [S2] SetTextToSpeechFlag | |||
|- | |||
| 219 || [S2] [[#GetTextMagnificationRatio]] | |||
|- | |||
| 220 || [S2] SetTextMagnificationRatio | |||
|- | |- | ||
| 221 || [17.0.0+] GetForceMonauralOutputFlag | | 221 || [17.0.0+] GetForceMonauralOutputFlag | ||
| Line 782: | Line 998: | ||
| 222 || [17.0.0+] SetForceMonauralOutputFlag | | 222 || [17.0.0+] SetForceMonauralOutputFlag | ||
|- | |- | ||
| | | 223 || [S2] GetUsbAudioVolumeSettings | ||
|- | |||
| 224 || [S2] SetUsbAudioVolumeSettings | |||
|- | |||
| 225 || [S2] GetTitleIconKeepFlag | |||
|- | |||
| 226 || [S2] SetTitleIconKeepFlag | |||
|- | |||
| 227 || [S2] GetBoldTextFlag | |||
|- | |||
| 228 || [S2] SetBoldTextFlag | |||
|- | |||
| 229 || [S2] GetSpeechToTextFlag | |||
|- | |||
| 230 || [S2] SetSpeechToTextFlag | |||
|- | |||
| 235 || [S2] GetColorFilterType | |||
|- | |||
| 236 || [S2] SetColorFilterType | |||
|- | |||
| 237 || [S2] GetPrioritizedOutputAudioDeviceSettings | |||
|- | |- | ||
| | | 238 || [S2] SetPrioritizedOutputAudioDeviceSettings | ||
|- | |- | ||
| | | 239 || [S2] GetPrioritizedInputAudioDeviceSettings | ||
|- | |- | ||
| | | 240 || [S2] SetPrioritizedInputAudioDeviceSettings | ||
|- | |- | ||
| | | 241 || [S2] GetTextToSpeechVoiceTypeForUi | ||
|- | |- | ||
| | | 242 || [S2] SetTextToSpeechVoiceTypeForUi | ||
|- | |- | ||
| | | 243 || [S2] GetLcdFlags | ||
|- | |- | ||
| | | 244 || [S2] SetLcdFlags | ||
|- | |- | ||
| | | 245 || [S2] GetTvHdrSettings | ||
|- | |- | ||
| | | 246 || [S2] SetTvHdrSettings | ||
|- | |- | ||
| | | 247 || [S2] IsColorInversionEnabled | ||
| | |- | ||
| 248 || [S2] SetColorInversionEnabled | |||
|- | |||
| 249 || [S2] GetKeyRemapEnableFlagOnQuickSettings | |||
|- | |||
| 250 || [S2] SetKeyRemapEnableFlagOnQuickSettings | |||
|- | |||
| 251 || [18.0.0+] GetAccountIdentificationSettings | |||
|- | |||
| 252 || [18.0.0+] SetAccountIdentificationSettings | |||
|- | |||
| 253 || [S2] GetDeviceLockPinCodeLength | |||
|- | |||
| 254 || [S2] GetDeviceLockPinCode | |||
|- | |||
| 255 || [S2] SetDeviceLockPinCode | |||
|- | |||
| 256 || [S2] GetDeviceLockEnableFlag | |||
|- | |||
| 257 || [S2] GetDeviceLockStartPenaltyTime | |||
|- | |||
| 258 || [S2] SetDeviceLockStartPenaltyTime | |||
|- | |||
| 259 || [S2] GetDeviceLockErrorCount | |||
|- | |||
| 260 || [S2] SetDeviceLockErrorCount | |||
|- | |||
| 261 || [S2] GetBatteryCareModeEnableFlag | |||
|- | |||
| 262 || [S2] SetBatteryCareModeEnableFlag | |||
|- | |||
| 263 || [20.0.0+] AcquireVphymDirtyFlagEventHandle | |||
|- | |||
| 264 || [20.0.0+] GetVphymDirtyFlags | |||
|- | |||
| 265 || [S2] GetInitialLaunchSettings | |||
|- | |||
| 266 || [S2] SetInitialLaunchSettings | |||
|- | |||
| 267 || [S2] GetManufacturingTimeStamp | |||
|- | |||
| 268 || [S2] SetManufacturingTimeStamp | |||
|- | |||
| 269 || [S2] GetInputNoiseReductionForCommunicationFlag | |||
|- | |||
| 270 || [S2] SetInputNoiseReductionForCommunicationFlag | |||
|- | |||
| 271 || [S2] GetChatTranscriptionSettings | |||
|- | |||
| 272 || [S2] SetChatTranscriptionSettings | |||
|- | |||
| 273 || [S2] GetBuiltInMicrophoneGain | |||
|- | |||
| 274 || [S2] SetBuiltInMicrophoneGain | |||
|- | |||
| 275 || [S2] GetBuiltInMicrophoneJackGain | |||
|- | |||
| 276 || [S2] SetBuiltInMicrophoneJackGain | |||
|- | |||
| 277 || [S2] GetUsbAudioInputDeviceGainSettings | |||
|- | |||
| 278 || [S2] SetUsbAudioInputDeviceGainSettings | |||
|- | |||
| 279 || [S2] SetBluetoothStackFlag | |||
|- | |||
| 280 || [S2] SetHidDebugOcdUsbFlag | |||
|- | |||
| 281 || [S2] SetHidDebugRailFlag | |||
|- | |||
| 282 || [20.0.0+] [[#ConvertToProductModel|ConvertToProductModel]] | |||
|- | |||
| 283 || [20.0.0+] [[#ConvertToProductModelName|ConvertToProductModelName]] | |||
|- | |||
| 284 || [S2] GetSaveDataPurgedForRepairFlag | |||
|- | |||
| 285 || [S2] SetSaveDataPurgedForRepairFlag | |||
|- | |||
| 286 || [S2] [20.0.0+] GetAppletParameterSet | |||
|- | |||
| 287 || [S2] [20.0.0+] SetAppletParameterSet | |||
|- | |||
| 288 || [S2] [20.0.0+] BindChatTranscriptionSettingsChangedEvent | |||
|- | |||
| 289 || [20.0.0+] GetDefaultAccountIdentificationFlagSet | |||
|- | |||
| 290 || [S2] [20.0.0+] GetMouseEnableFlag | |||
|- | |||
| 291 || [S2] [20.0.0+] SetMouseEnableFlag | |||
|- | |||
| 292 || [S2] [20.0.0+] GetTextToSpeechVoiceVolume | |||
|- | |||
| 293 || [S2] [20.0.0+] SetTextToSpeechVoiceVolume | |||
|- | |||
| 294 || [S2] [20.0.0+] GetTextToSpeechVoiceSpeed | |||
|- | |||
| 295 || [S2] [20.0.0+] SetTextToSpeechVoiceSpeed | |||
|- | |||
| 296 || [S2] [20.0.0+] GetSleepSettingsEx | |||
|- | |||
| 297 || [S2] [20.0.0+] SetSleepSettingsEx | |||
|- | |||
| 298 || [S2] [20.0.0+] GetMousePointerSpeedScale | |||
|- | |||
| 299 || [S2] [20.0.0+] SetMousePointerSpeedScale | |||
|- | |||
| 300 || [20.0.0+] AcquirePushNotificationDirtyFlagEventHandle | |||
|- | |||
| 301 || [20.0.0+] GetPushNotificationDirtyFlags | |||
|- | |||
| 302 || [S2] [20.0.0+] GetTvHdrSettingsEx | |||
|- | |||
| 303 || [S2] [20.0.0+] SetTvHdrSettingsEx | |||
|- | |||
| 304 || [S2] [20.0.0+] GetOunceProControllerMicrophoneJackGain | |||
|- | |||
| 305 || [S2] [20.0.0+] SetOunceProControllerMicrophoneJackGain | |||
|- | |||
| 306 || [20.0.0+] GetPinCodeReregistrationGuideAccounts | |||
|- | |||
| 307 || [20.0.0+] SetPinCodeReregistrationGuideAccounts | |||
|- | |||
| 308 || [S2] [20.0.0+] GetChatTranscriptionSettings | |||
|- | |||
| 309 || [S2] [20.0.0+] SetChatTranscriptionSettings | |||
|- | |||
| 310 || [S2] [20.0.0+] GetDeviceLockPinCodeLsbParity | |||
|- | |||
| 311 || [S2] [20.0.0+] VerifyDeviceLockPinCode | |||
|- | |||
| 312 || [S2] [20.0.0+] GetDeviceLockVeificationForbiddenFlag | |||
|- | |||
| 315 || [21.0.0+] GetHttpAuthConfigs | |||
|- | |||
| 319 || [21.0.0+] GetAccountUserSettings | |||
|- | |||
| 320 || [21.0.0+] SetAccountUserSettings | |||
|- | |||
| 321 || [21.0.0+] GetDefaultAccountUserSettings | |||
|- | |||
| 324 || [22.0.0+] GetPtmQhClearCount | |||
|- | |||
| 325 || [22.0.0+] SetPtmQhClearCount | |||
|- | |||
| 326 || [22.0.0+] GetAirPlaneModeRestoreFlagSet | |||
|- | |||
| 327 || [22.0.0+] SetAirPlaneModeRestoreFlagSet | |||
|- | |||
| 328 || [22.0.0+] DeleteSettingsPerAccount | |||
|} | |||
Official user-processes gets a new service session handle each time a set:sys cmd is used, with the session being closed afterwards. | |||
== | == SetLanguageCode == | ||
Takes an input [[# | Takes an input [[#LanguageCode]], no output. | ||
== | == GetFirmwareVersion == | ||
Takes a type-0x1A output buffer. User-processes use hard-coded size 0x100. | |||
This was removed with S2. | |||
If needed, reads the content of the [[System_Version_Title]] "/file" into state. This is only done once. | |||
Then the above 0x100-byte data is copied to the output buffer. | |||
== | == GetAccountSettings == | ||
No input, returns an output [[#AccountSettings]]. | |||
== | == SetAccountSettings == | ||
Takes an input [[#AccountSettings]], no output. | |||
== | == GetEulaVersions == | ||
Takes a type-0x6 output buffer containing an array of [[#EulaVersion]], returns an output s32 total_out. | |||
== | == SetEulaVersions == | ||
Takes a type-0x5 input buffer containing an array of [[#EulaVersion]], no output. | |||
== | == GetColorSetId == | ||
No input, returns an output s32. | |||
This is the current Theme set by System Settings. | |||
* 0: "Basic White" | |||
* 1: "Basic Black" | |||
== | == SetColorSetId == | ||
Takes | Takes an input s32, no output. | ||
== GetNotificationSettings == | |||
No input, returns an output [[#NotificationSettings]]. | |||
== | == SetNotificationSettings == | ||
Takes | Takes an input [[#NotificationSettings]], no output. | ||
== | == GetAccountNotificationSettings == | ||
Takes a type-0x6 output buffer containing an array of [[#AccountNotificationSettings]], returns an output s32 total_out. | |||
== | == SetAccountNotificationSettings == | ||
Takes a type-0x5 input buffer containing an array of [[#AccountNotificationSettings]], no output. | |||
== | == GetSettingsItemValue == | ||
Returns an | Takes two type-0x19 input buffers and a type-0x6 output buffer. Returns an output u64 for the actual size written to the outbuf. | ||
The outbuf_size is compared with the config_size. When config_size is larger than outbuf_size, outbuf_size is used for the memcpy, otherwise config_size is used. Afterwards the size used for the memcpy is written to output(see above). | |||
If loading from main config fails, it will also attempt to load config from various state if the input strings match hard-coded strings. | |||
== | == GetTvSettings == | ||
No input, returns an | No input, returns an output [[#TvSettings]]. | ||
== | == SetTvSettings == | ||
Takes an input | Takes an input [[#TvSettings]], no output. | ||
== | == GetDebugModeFlag == | ||
Returns an output u8. | |||
Loads the 1-byte config for <"settings_debug", "is_debug_mode_enabled">. If that fails, value 0x1 is written to output. This uses the same func as ReadSetting internally. | |||
Returned retval is always 0. | |||
== | == GetPrimaryAlbumStorage == | ||
No input, returns an output [[# | No input, returns an output s32 [[#PrimaryAlbumStorage]]. | ||
== | == SetPrimaryAlbumStorage == | ||
Takes an input s32 [[#PrimaryAlbumStorage]], no output. | |||
== | == GetBatteryLot == | ||
No input, returns an output [[# | No input, returns an output [[#BatteryLot]]. | ||
== | == GetSerialNumber == | ||
Returns the 0x18-byte SerialNumber string. | |||
== | == GetSleepSettings == | ||
No input, returns an output | No input, returns an output [[#SleepSettings]]. | ||
== | == SetSleepSettings == | ||
Takes | Takes an input [[#SleepSettings]], no output. | ||
== GetInitialLaunchSettings == | |||
No input, returns an output [[#InitialLaunchSettings]]. | |||
== | == SetInitialLaunchSettings == | ||
Takes an input | Takes an input [[#InitialLaunchSettings]], no output. | ||
== | == GetDeviceNickName == | ||
Takes a type-0x16 output buffer containing a [[#DeviceNickName]]. | |||
With [10.1.0+] sdknso now uses the set cmd instead of the setsys cmd. | |||
== | == SetDeviceNickName == | ||
Takes a type-0x15 input buffer containing a [[#DeviceNickName]]. | |||
== GetProductModel == | |||
No input, returns an output s32 [[#ProductModel|ProductModel]]. | |||
== GetMiiAuthorId == | |||
No input, returns an output "nn::util::Uuid". | |||
== | == GetServiceDiscoveryControlSettings == | ||
Returns an u32 [[#ServiceDiscoveryControlSettings|ServiceDiscoveryControlSettings]]. | |||
== GetErrorReportSharePermission == | |||
No input, returns an output s32 [[#ErrorReportSharePermission]]. | |||
== | == SetErrorReportSharePermission == | ||
Takes an input | Takes an input s32 [[#ErrorReportSharePermission]], no output. | ||
== GetAppletLaunchFlags == | |||
No input, returns an u32 bitmask [[#AppletLaunchFlag]]. | |||
== | == SetAppletLaunchFlags == | ||
Takes an input u32 bitmask [[#AppletLaunchFlag]], no output. | |||
== | == GetKeyboardLayout == | ||
No input, returns an output s32 [[#KeyboardLayout]]. | |||
== | == SetKeyboardLayout == | ||
Takes an input s32 [[#KeyboardLayout]], no output. | |||
== GetAllowedSslHosts == | |||
Takes a type-0x6 output buffer. Returns an output s32 entry count. | |||
== | == GetRebootlessSystemUpdateVersion == | ||
No input, returns an output | No input, returns an output [[#RebootlessSystemUpdateVersion]]. | ||
== | == GetQuestFlag == | ||
Gets a flag determining whether the console is a kiosk unit (codenamed "Quest"). Used by qlaunch to determine whether to launch Retail Interactive Display Menu. | |||
== GetDataDeletionSettings == | |||
No input, returns an output [[#DataDeletionSettings]]. | |||
== | == SetDataDeletionSettings == | ||
Takes an input | Takes an input [[#DataDeletionSettings]], no output. | ||
== GetDeviceTimeZoneLocationName == | |||
No input, returns an output [[Glue_services#LocationName|LocationName]]. | |||
== | == SetDeviceTimeZoneLocationName == | ||
Takes | Takes an input [[Glue_services#LocationName|LocationName]], no output. | ||
== | == GetWirelessCertificationFileSize == | ||
No input, returns an output u64 size. | |||
== | == GetWirelessCertificationFile == | ||
Takes a type-0x6 output buffer | Takes a type-0x6 output buffer, returns an output u64 size. | ||
This gets the [[Flash_Filesystem#PRODINFOF|WirelessCertificationFile]]. | |||
== | == SetRegionCode == | ||
Takes | Takes an input s32 [[#RegionCode_2|RegionCode]], no output. | ||
== | == GetChineseTraditionalInputMethod == | ||
No input, returns an output s32 [[#ChineseTraditionalInputMethod]]. | |||
== | == SetChineseTraditionalInputMethod == | ||
Takes | Takes an input s32 [[#ChineseTraditionalInputMethod]], no output. | ||
== | == GetHomeMenuScheme == | ||
No input. Returns an output [[#HomeMenuScheme]]. | |||
The colors are loaded from [[Calibration]], with the set of fields to use selected by [[Calibration#ColorVariation|ColorVariation]]. | |||
== | == GetT == | ||
No input, returns an output u8 bool '''IsT'''. | |||
[9.0.0+] This is a wrapper for [[#GetPlatformRegion]]: <code>IsT = (PlatformRegion == 2)</code>. | |||
== | == SetT == | ||
Takes | Takes an input u8 bool '''IsT''', no output. | ||
== | [9.0.0+] This is a wrapper for [[#SetPlatformRegion]]: <code>PlatformRegion = 1 + (IsT & 1)</code>. | ||
No input, returns an output bool. | |||
== GetPlatformRegion == | |||
No input, returns an output s32. | |||
== SetPlatformRegion == | |||
Takes an input s32, no output. | |||
== GetHomeMenuSchemeModel == | |||
No input. Returns an output u32. | |||
Loads the 0xB-byte setting <"settings_debug", "home_menu_scheme_model">, throwing an error if loading this fails. Depending on the content of the setting, the output u32 is either determined by the value of this setting, or loaded from [[Calibration#ColorModel|ColorModel]]. | |||
== GetMemoryUsageRateFlag == | |||
No input, returns an output u8 bool. | |||
== | == GetTouchScreenMode == | ||
No input, returns an output s32. | |||
Official sw loads the output as an u8 and copies it to an output [[#TouchScreenMode]]. | |||
== SetTouchScreenMode == | |||
Takes an input s32, no output. | |||
Official sw sets the input to an u8 loaded from an input [[#TouchScreenMode]]. | |||
== GetButtonConfigSettingsFull == | |||
Takes a type-0x6 output buffer containing an array of [[#ButtonConfigSettings]], returns an output s32. | |||
== SetButtonConfigSettingsFull == | |||
Takes a type-0x5 input buffer containing an array of [[#ButtonConfigSettings]], no output. | |||
== GetButtonConfigSettingsEmbedded == | |||
Takes a type-0x6 output buffer containing an array of [[#ButtonConfigSettings]], returns an output s32. | |||
== SetButtonConfigSettingsEmbedded == | |||
Takes a type-0x5 input buffer containing an array of [[#ButtonConfigSettings]], no output. | |||
== GetButtonConfigSettingsLeft == | |||
Takes a type-0x6 output buffer containing an array of [[#ButtonConfigSettings]], returns an output s32. | |||
== SetButtonConfigSettingsLeft == | |||
Takes a type-0x5 input buffer containing an array of [[#ButtonConfigSettings]], no output. | |||
= | == GetButtonConfigSettingsRight == | ||
Takes a type-0x6 output buffer containing an array of [[#ButtonConfigSettings]], returns an output s32. | |||
== SetButtonConfigSettingsRight == | |||
Takes a type-0x5 input buffer containing an array of [[#ButtonConfigSettings]], no output. | |||
| | == GetButtonConfigRegisteredSettingsEmbedded == | ||
| " | Takes a type-0x16 output buffer containing a [[#ButtonConfigRegisteredSettings]], no output. | ||
== SetButtonConfigRegisteredSettingsEmbedded == | |||
Takes a type-0x15 input buffer containing a [[#ButtonConfigRegisteredSettings]], no output. | |||
== GetButtonConfigRegisteredSettings == | |||
Takes a type-0x6 output buffer containing an array of [[#ButtonConfigRegisteredSettings]], returns an output s32. | |||
== SetButtonConfigRegisteredSettings == | |||
Takes a type-0x5 input buffer containing an array of [[#ButtonConfigRegisteredSettings]], no output. | |||
== GetFieldTestingFlag == | |||
No input, returns an output bool. | |||
== SetFieldTestingFlag == | |||
Takes an input bool, no output. | |||
== GetTextMagnificationRatio == | |||
This is exclusive to S2. | |||
No input, returns an output float. | |||
== ConvertToProductModel == | |||
Takes an input [[#ProductModelName|ProductModelName]], returns an output [[#ProductModel|ProductModel]]. | |||
== ConvertToProductModelName == | |||
Takes an input [[#ProductModel|ProductModel]], return an output [[#ProductModelName|ProductModelName]]. | |||
When the input [[#ProductModel|ProductModel]] is invalid, this writes 0 to output and returns 0. | |||
= Language = | |||
This is "nn::settings::Language". | |||
{| class="wikitable" border="1" | |||
|- | |- | ||
! Value | |||
! Description | |||
|- | |- | ||
| | | 0 || Japanese | ||
|- | |- | ||
| | | 1 || AmericanEnglish | ||
|- | |- | ||
| | | 2 || French | ||
|- | |- | ||
| | | 3 || German | ||
|- | |- | ||
| | | 4 || Italian | ||
|- | |- | ||
| | | 5 || Spanish | ||
|- | |- | ||
| | | 6 || Chinese | ||
|- | |- | ||
| | | 7 || Korean | ||
|- | |- | ||
| | | 8 || Dutch | ||
|- | |- | ||
| | | 9 || Portuguese | ||
|- | |- | ||
| | | 10 || Russian | ||
|- | |- | ||
| | | 11 || Taiwanese | ||
|- | |- | ||
| | | 12 || BritishEnglish | ||
|- | |- | ||
| | | 13 || CanadianFrench | ||
|- | |- | ||
| | | 14 || LatinAmericanSpanish | ||
|- | |||
| 15 || [4.0.0+] SimplifiedChinese | |||
|- | |||
| 16 || [4.0.0+] TraditionalChinese | |||
|- | |- | ||
| | | 17 || [10.1.0+] BrazilianPortuguese | ||
|} | |} | ||
= | = LanguageCode = | ||
This is "nn::settings:: | This is "nn::settings::LanguageCode". This is an u64, which is a NUL-terminated string. | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
! | ! Value || [[#Language]] | ||
|- | |- | ||
| | | "ja" || Japanese | ||
|- | |- | ||
| | | "en-US" || AmericanEnglish | ||
|- | |- | ||
| | | "fr" || French | ||
|- | |- | ||
| "de" || German | |||
|- | |- | ||
| | | "it" || Italian | ||
|- | |- | ||
| | | "es" || Spanish | ||
|- | |- | ||
| | | "zh-CN" || Chinese | ||
| | |- | ||
| "ko" || Korean | |||
|- | |||
| "nl" || Dutch | |||
|- | |||
| "pt" || Portuguese | |||
|- | |||
| "ru" || Russian | |||
|- | |- | ||
| "zh-TW" || Taiwanese | |||
|- | |- | ||
| | | "en-GB" || BritishEnglish | ||
|- | |- | ||
| | | "fr-CA" || CanadianFrench | ||
| | |- | ||
| "es-419" || LatinAmericanSpanish | |||
|- | |||
| "zh-Hans" || [4.0.0+] SimplifiedChinese | |||
|- | |||
| "zh-Hant" || [4.0.0+] TraditionalChinese | |||
|- | |||
| "pt-BR" || [10.1.0+] BrazilianPortuguese | |||
|} | |||
= | = AccelerometerOffset = | ||
This is "nn::settings::factory:: | This is "nn::settings::factory::AccelerometerOffset". | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
! Offset || Size || Description | ! Offset || Size || Description | ||
|- | |- | ||
| 0x0 || | | 0x0 || 0x2 || X | ||
|- | |||
| 0x2 || 0x2 || Y | |||
|- | |- | ||
| | | 0x4 || 0x2 || Z | ||
|} | |} | ||
= | = AccelerometerScale = | ||
This is "nn::settings::factory:: | This is "nn::settings::factory::AccelerometerScale". | ||
= | {| class="wikitable" border="1" | ||
|- | |||
! Offset || Size || Description | |||
|- | |||
| 0x0 || 0x2 || X | |||
|- | |||
| 0x2 || 0x2 || Y | |||
|- | |||
| 0x4 || 0x2 || Z | |||
|} | |||
= | = AmiiboEcdsaCertificate = | ||
This is "nn::settings:: | This is "nn::settings::factory::AmiiboEcdsaCertificate". This is a 0x70-byte struct. | ||
= | = AmiiboEcqvBlsCertificate = | ||
This is "nn::settings::factory:: | This is "nn::settings::factory::AmiiboEcqvBlsCertificate". This is a 0x20-byte struct. | ||
= | = AmiiboEcqvBlsKey = | ||
This is "nn::settings::factory:: | This is "nn::settings::factory::AmiiboEcqvBlsKey". This is a 0x40-byte struct. | ||
If [[Calibration#CAL0|Calibration Version]] >= 9, this is now: | |||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
! | ! Offset || Size || Description | ||
|- | |- | ||
| | | 0x0 || 0x40 || Key | ||
|- | |- | ||
| " | | 0x40 || 0x4 || KeyGeneration | ||
|} | |||
= AmiiboEcqvBlsRootCertificate = | |||
This is "nn::settings::factory::AmiiboEcqvBlsRootCertificate". This is a 0x90-byte struct. | |||
= AmiiboEcqvCertificate = | |||
This is "nn::settings::factory::AmiiboEcqvCertificate". This is a 0x14-byte struct. | |||
= AmiiboKey = | |||
This is "nn::settings::factory::AmiiboKey". This is a 0x50-byte struct. | |||
If [[Calibration#CAL0|Calibration Version]] >= 9, this is now: | |||
{| class="wikitable" border="1" | |||
|- | |- | ||
| | ! Offset || Size || Description | ||
|- | |- | ||
| | | 0x0 || 0x50 || Key | ||
|- | |- | ||
| " | | 0x50 || 0x4 || KeyGeneration | ||
|} | |||
= AnalogStickFactoryCalibration = | |||
| " | This is "nn::settings::factory::AnalogStickFactoryCalibration". Same as [[Calibration#AnalogStickFactoryCalibration|AnalogStickFactoryCalibration]]. | ||
= AnalogStickModelParameter = | |||
This is "nn::settings::factory::AnalogStickModelParameter". Same as [[Calibration#AnalogStickModelParameter|AnalogStickModelParameter]]. | |||
= BatteryLot = | |||
This is "nn::settings::BatteryLot". This is a 0x18-byte struct. | |||
= BdAddress = | |||
This is "nn::settings::factory::BdAddress". This is a 0x6-byte struct. | |||
= ConfigurationId1 = | |||
This is "nn::settings::factory::ConfigurationId1". This is a 0x1E-byte struct. | |||
Usually, this is a string with the following format: | |||
{EventType}_{ProductModelType}_{MajorVersion}_{MinorVersion}_{MicroVersion} | |||
== EventType == | |||
{| class="wikitable" border="1" | |||
|- | |- | ||
! Value | |||
! Description | |||
|- | |- | ||
| " | | "FP" || Functional prototype | ||
|- | |- | ||
| " | | "EP" || Engineering prototype | ||
|- | |- | ||
| " | | "DP" || Design prototype | ||
|- | |- | ||
| " | | "DPRD" || Design prototype for R&D | ||
|- | |- | ||
| "MP" || Mass production (retail Icosa) | | "HOAG" || Hoag prototype | ||
|- | |||
| "COPPER" || Copper prototype | |||
|- | |||
| "EDEV" || Extcon development kit for Icosa and Iowa | |||
|- | |||
| "SDEV" || SPI development kit for Icosa and Iowa | |||
|- | |||
| "MEDEV" || Mariko EDEV (deprecated) | |||
|- | |||
| "MSDEV" || Mariko SDEV (deprecated) | |||
|- | |||
| "HDEV" || Development kit for Hoag | |||
|- | |||
| "ADEV" || Development kit for Aula | |||
|- | |||
| "MP" || Mass production (retail Icosa) | |||
|- | |- | ||
| "MNX" || Mariko NX (retail Iowa) | | "MNX" || Mariko NX (retail Iowa) | ||
|- | |||
| "HNX" || Hoag NX (retail Hoag) | |||
|- | |- | ||
| "ANX" || Aula NX (retail Aula) | | "ANX" || Aula NX (retail Aula) | ||
| Line 1,631: | Line 2,036: | ||
| 3 || GrayScale | | 3 || GrayScale | ||
|} | |} | ||
= TvUnderscan = | |||
This is s32. It defines the percentage point reduction from a 100% baseline. | |||
= HandheldSleepPlan = | = HandheldSleepPlan = | ||
| Line 1,875: | Line 2,283: | ||
| 0x10 || 0x4 || [[#CmuMode|CmuMode]] | | 0x10 || 0x4 || [[#CmuMode|CmuMode]] | ||
|- | |- | ||
| 0x14 || 0x4 || TvUnderscan | | 0x14 || 0x4 || [[#TvUnderscan|TvUnderscan]] | ||
|- | |- | ||
| 0x18 || 0x4 || TvGamma | | 0x18 || 0x4 || TvGamma | ||
| Line 2,064: | Line 2,472: | ||
|- | |- | ||
| 2 || | | 2 || | ||
|} | |||
= HomeMenuScheme = | |||
This is "nn::settings::system::HomeMenuScheme". | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset || Size || Description | |||
|- | |||
| 0x0 || 0x4 || MainColor | |||
|- | |||
| 0x4 || 0x4 || BackColor | |||
|- | |||
| 0x8 || 0x4 || SubColor | |||
|- | |||
| 0xC || 0x4 || Reserved | |||
|- | |||
| 0x10 || 0x4 || BezelColor | |||
|} | |} | ||
| Line 2,117: | Line 2,543: | ||
| 0x3A || 0x2 || Version | | 0x3A || 0x2 || Version | ||
|- | |- | ||
| 0x3C || 0x4 || TrustedServices | | 0x3C || 0x4 || TrustedServices | ||
|- | |- | ||
| 0x40 || 0x2 || Vid | | 0x40 || 0x2 || Vid | ||
|- | |- | ||
| 0x42 || 0x2 || Pid | | 0x42 || 0x2 || Pid | ||
|- | |- | ||
| 0x44 || 0x1 || SubClass | | 0x44 || 0x1 || SubClass | ||
|- | |- | ||
| 0x45 || 0x1 || AttributeMask | | 0x45 || 0x1 || AttributeMask | ||
|- | |- | ||
| 0x46 || 0x2 || DescriptorLength | | 0x46 || 0x2 || DescriptorLength | ||
|- | |||
| 0x48 || 0x80 || Descriptor | |||
|- | |||
| 0xC8 || 0x1 || KeyType | |||
|- | |||
| 0xC9 || 0x1 || DeviceType | |||
|- | |||
| 0xCA || 0x2 || BrrSize | |||
|- | |||
| 0xCC || 0x9 || Brr | |||
|- | |||
| 0xD5 || 0x1 || [13.0.0+] AudioSourceVolume | |||
|- | |||
| 0xD6 || 0xF9 || [13.0.0+] DeviceName | |||
|- | |||
| 0x1CF || 0x1 || [15.0.0+] AudioSinkVolume | |||
|- | |||
| 0x1D0 || 0x4 || [14.0.0+] AudioFlags | |||
|- | |||
| 0x1D4 || 0x2C || Reserved | |||
|} | |||
= NxControllerLegacySettings = | |||
This is "nn::settings::system::NxControllerLegacySettings" ([1.0.0-12.1.0] "nn::settings::system::NxControllerSettings"). This is a 0x29-byte struct. | |||
= NxControllerSettings = | |||
This is "nn::settings::system::NxControllerSettings". This is a 0x42C-byte struct. This was added with [13.0.0+]. | |||
= ProductModel = | |||
Ths is "nn::settings::system::ProductModel". | |||
{| class="wikitable" border="1" | |||
|- | |||
! Value | |||
! Description | |||
|- | |||
| 0 || Invalid | |||
|- | |||
| 1 || Nx | |||
|- | |||
| 2 || NxCopper | |||
|- | |||
| 3 || NxIowa | |||
|- | |||
| 4 || NxHoag | |||
|- | |||
| 5 || NxCalcio | |||
|- | |||
| 6 || NxAula | |||
|- | |||
| 7 || ([[#ProductModelName|ProductModelName]] BEE) | |||
|- | |||
| 8 || [22.5.0+] ([[#ProductModelName|ProductModelName]] OSM) | |||
|- | |||
| 9 || | |||
|- | |||
| 10 || | |||
|- | |||
| 11 || | |||
|- | |||
| 12 || | |||
|} | |||
Range 1-6 is Nintendo Switch, range 7-12 is Nintendo Switch 2. | |||
= ProductModelName = | |||
This is "nn::settings::system::ProductModelName". This is a 0x8-byte struct containing a [[#ProductModel|string]]. | |||
{| class="wikitable" border="1" | |||
|- | |||
! Value | |||
! [[#ProductModel|ProductModel]] | |||
|- | |- | ||
| | | "HAC" || 1 | ||
|- | |- | ||
| | | "HAD" || 3 | ||
|- | |- | ||
| | | "HDH" || 4 | ||
|- | |- | ||
| | | "HEG" || 6 | ||
|- | |- | ||
| | | "BEE" || 7 | ||
|- | |- | ||
| | | "OSM" || [22.5.0+] 8 | ||
|} | |} | ||
= | = SystemConfiguration = | ||
There's a common configuration title (*818), and one configuration title for each [[SMC#HardwareType|HardwareType]]. | There's a common configuration title (*818), and one configuration title for each [[SMC#HardwareType|HardwareType]]. | ||