NIM services: Difference between revisions
(5 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
! Cmd || Name | ! Cmd || Name | ||
|- | |- | ||
| 0 || CreateSystemUpdateTask | | 0 || [[#CreateSystemUpdateTask]] | ||
|- | |- | ||
| 1 || [[#DestroySystemUpdateTask]] | | 1 || [[#DestroySystemUpdateTask]] | ||
Line 26: | Line 26: | ||
| 9 || RequestNetworkInstallTaskRun | | 9 || RequestNetworkInstallTaskRun | ||
|- | |- | ||
| 10 || GetNetworkInstallTaskInfo | | 10 || [[#GetNetworkInstallTaskInfo]] | ||
|- | |- | ||
| 11 || CommitNetworkInstallTask | | 11 || CommitNetworkInstallTask | ||
Line 74: | Line 74: | ||
| 34 || [2.0.0+] RequestApplyDeltaTaskRun | | 34 || [2.0.0+] RequestApplyDeltaTaskRun | ||
|- | |- | ||
| 35 || [2.0.0+] GetApplyDeltaTaskInfo | | 35 || [2.0.0+] [[#GetApplyDeltaTaskInfo]] | ||
|- | |- | ||
| 36 || [2.0.0+] ListApplyDeltaTask | | 36 || [2.0.0+] ListApplyDeltaTask | ||
Line 219: | Line 219: | ||
|} | |} | ||
[ | [5.0.0+] RequestGameCardRegistrationStatus/RequestRegisterGameCard removed 8-bytes of input, and now takes an additional type-0x5 input buffer. | ||
[ | [8.0.0+] Cmd76 now takes an additional 0x8-bytes of input. | ||
[ | == CreateSystemUpdateTask == | ||
Takes an input u32 firmware_variation, an u32 '''unk''', an input 0x10-byte struct, returns an output [[#SystemUpdateTask]]. | |||
Official sw sets '''unk''' to: <code>unk = inflag & 1 ? 0xC : 0x4</code>. | |||
Structure of the input struct: | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset | |||
! Size | |||
! Description | |||
|- | |||
| 0x0 || 0x8 || Unknown | |||
|- | |||
| 0x8 || 0x4 || Unknown | |||
|- | |||
| 0xC || 0x1 || Unknown | |||
|- | |||
| 0xD || 0x1 || Unknown | |||
|- | |||
| 0xE || 0x2 || Padding? | |||
|} | |||
== DestroySystemUpdateTask == | == DestroySystemUpdateTask == | ||
Line 236: | Line 257: | ||
== CommitSystemUpdateTask == | == CommitSystemUpdateTask == | ||
Takes an input [[#SystemUpdateTask]], no output. | Takes an input [[#SystemUpdateTask]], no output. | ||
== GetNetworkInstallTaskInfo == | |||
Takes an input [[#NetworkInstallTask]], returns an output [[#NetworkInstallTaskInfo]]. | |||
== GetDownloadedSystemDataPath == | == GetDownloadedSystemDataPath == | ||
Line 244: | Line 268: | ||
== IsExFatDriverIncluded == | == IsExFatDriverIncluded == | ||
Takes an input [[#SystemUpdateTask]], returns an output u8 bool flag. | Takes an input [[#SystemUpdateTask]], returns an output u8 bool flag. | ||
== GetApplyDeltaTaskInfo == | |||
Takes an input [[#ApplyDeltaTask]], returns an output [[#ApplyDeltaTaskInfo]]. | |||
== SystemUpdateTask == | == SystemUpdateTask == | ||
Line 249: | Line 276: | ||
== SystemUpdateTaskInfo == | == SystemUpdateTaskInfo == | ||
This is a 0x28-byte struct. | {| class="wikitable" border="1" | ||
|- | |||
! Offset | |||
! Size | |||
! Description | |||
|- | |||
| 0x0 || 0x1 || Status | |||
|- | |||
| 0x1 || 0x7 || ? | |||
|- | |||
| 0x8 || 0x8 || Unknown | |||
|- | |||
| 0x10 || 0x8 || DownloadSize | |||
|- | |||
| 0x18 || 0x8 || ContentMetaId | |||
|- | |||
| 0x20 || 0x4 || Version | |||
|- | |||
| 0x24 || 0x4 || ? | |||
|- | |||
| 0x28 || 0x8 || Unknown | |||
|- | |||
| 0x30 || 0x8 || Unknown | |||
|- | |||
| 0x38 || 0x8 || ? | |||
|} | |||
This is a 0x28-byte struct. [3.0.0+] This is a 0x38-byte struct. [5.0.0+] This is a 0x40-byte struct. | |||
The 0x10-bytes at +0x8 are returned by [[NS_Services#GetDownloadProgress]]. | |||
The two u64s at +0x28/+0x30 are used by [[NS_Services|NS]] to calculate "ThroughputKBps" for a SystemPlayReport. | |||
== NetworkInstallTask == | |||
This is a 0x10-byte struct. | |||
== NetworkInstallTaskInfo == | |||
This is a 0x28-byte struct. [3.0.0+] This is a 0x40-byte struct. | |||
== ApplyDeltaTask == | |||
This is a 0x10-byte struct. | |||
== ApplyDeltaTaskInfo == | |||
This is a 0x20-byte struct. [3.0.0+] This is a 0x30-byte struct. | |||
= nim:shp = | = nim:shp = |