summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ts: add OpenSessionLiam2023-10-202-6/+40
|
* service: move hle_ipc from kernelLiam2023-03-014-17/+17
|
* service: refactor server architectureLiam2023-02-212-8/+8
| | | | Converts services to have their own processes
* Merge pull request #9061 from liamwhite/writable-eventliamwhite2022-10-141-3/+3
|\ | | | | kernel: remove KWritableEvent
| * kernel: remove KWritableEventLiam2022-10-131-3/+3
| |
* | general: preliminary support for hblLiam2022-10-122-3/+13
|/
* service: ptm: Rewrite PSM and add TSgerman772022-06-296-80/+175
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-232-6/+4
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* core: Remove unused includesameerj2021-11-041-1/+0
|
* service: Replace service event creation with ServiceContext::CreateEventMorph2021-10-021-11/+13
| | | | The service context helps to manage all created events and allows us to close them upon destruction.
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-8/+8
| | | | Transition to PascalCase for result names.
* hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei2021-05-061-3/+3
|
* hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei2021-05-061-0/+1
|
* hle: kernel: Migrate KEvent to KAutoObject.bunnei2021-05-061-9/+8
|
* hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei2021-02-051-7/+9
|
* hle: kernel: Rename WritableEvent to KWritableEvent.bunnei2021-02-051-2/+2
|
* hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei2021-02-051-1/+1
|
* Omit system referenceChloe Marcec2021-01-251-2/+1
|
* psm: IPsmSessionChloe Marcec2021-01-251-2/+114
| | | | Used by homebrew menu
* service: Eliminate usages of the global system instanceLioncash2020-11-272-4/+8
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* service: Update function tablesVolcaEM2020-06-291-0/+1
|
* psm: Mark as debug instead of warningDavid Marcec2020-04-291-7/+14
| | | | No point to emulate battery life. However options are broken out if we ever want to add a setting for it
* psm: Stub GetChargerTypeZach Hilman2018-10-222-24/+27
| | | Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
* psm: Stub GetBatteryChargePercentageZach Hilman2018-10-212-1/+14
| | | | Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
* service: Add skeleton for psm serviceZach Hilman2018-10-212-0/+70
| | | | Seems to be the power controller. Listed in switchbrew under the category PTM services.
* hle: Remove a large amount of 3ds-specific service code.bunnei2017-10-1012-605/+0
|
* ResultVal: Remove MoveFrom()Yuri Kunde Schlesner2017-06-191-1/+1
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* FileSys: Move all result description to errors.hYuri Kunde Schlesner2017-05-251-1/+2
|
* result: Make error description a generic integerYuri Kunde Schlesner2017-05-251-1/+1
| | | | | | | | | It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules.
* use IPCHelper for PTM servicesemmaus2017-05-193-31/+45
|
* Merge pull request #2533 from Lectem/apt_ipchelperbunnei2017-04-062-4/+10
|\ | | | | IpcHelper enhancement and APT refactor
| * IPCHelper Skip method + address comments for aptLectem2017-03-181-1/+1
| |
| * move push out of class body and add u8 u16 bool specializationsLectem2017-03-181-1/+1
| |
| * refactor APT service to use the new IPC helpersLectem2017-03-182-4/+10
| |
* | ptm: create SharedExtSave file before openning itwwylele2017-03-251-1/+1
|/
* Merge pull request #2292 from lioncash/boolYuri Kunde Schlesner2016-12-091-1/+1
|\ | | | | ptm: Use boolean instead of integral value
| * ptm: Use boolean instead of integral valueLioncash2016-12-091-1/+1
| | | | | | | | The third parameter of Write is actually a bool type, not an int.
* | service: Add the ptm:s serviceLioncash2016-12-083-0/+14
| | | | | | | | 3dbrew documents this as being the exact same as ptm:sysm
* | service: Add common ptm:u commands to other ptm servicesLioncash2016-12-084-0/+54
| | | | | | | | | | 3dbrew indicates that all services have access to these commands except for ptm:sets.
* | service: Drop '_Interface' in ptm service class namesLioncash2016-12-087-14/+14
| | | | | | | | Inheriting from Service::Interface makes this obvious.
* | service: Add ptm::gets and ptm::sets servicesLioncash2016-12-085-0/+86
| |
* | ptm: Update ptm_sysm function tableLioncash2016-12-083-6/+7
|/ | | | Updated based off information from 3dbrew.
* PTM & CFG: use the correct path and error code according to the new FileSys policywwylele2016-11-191-1/+1
|
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-213-3/+3
|
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-193-4/+3
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-186-74/+82
|
* New3DS: Minor style cleanup to #1520.bunnei2016-05-241-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-203-3/+25
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* HLE/FS: Implemented GetFormatInfoSubv2016-03-201-1/+1
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* BitField: Make trivially copyable and remove assignment operatorMerryMage2016-02-121-2/+2
|
* services: Get rid of unnecessary includesLioncash2016-02-024-8/+4
|
* services: Update some function tablesLioncash2015-12-301-1/+2
|
* Fix copy pasteFiliph Sandström2015-10-241-1/+1
|
* Fix wrong branchFiliph Sandström2015-10-231-0/+12
|
* Add GetTotalStepCount StubFiliph Sandström2015-10-231-1/+1
|
* Update ptm.hFiliph Sandström2015-10-231-0/+8
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-292-4/+4
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-125-125/+112
| | | | IR, HID, and APT services.
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+1
|
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-1/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-2/+5
|
* ptm_sysm: Add static specifier to IsLegacyPowerOffLioncash2015-04-251-1/+1
|
* Services: Stubs and minor changespurpasmart962015-04-032-4/+4
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-048-0/+392
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.