summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: Eliminate usages of the global system instanceLioncash2020-11-272-18/+22
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* nfc: Update function tableVolcaEM2020-06-271-3/+3
| | | This was based on Switchbrew page: https://switchbrew.org/wiki/NFC_services
* service: Update function tablesLioncash2019-11-121-0/+1
| | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* core/yuzu: Remove enable_nfc settingfearlessTobi2019-03-291-1/+1
| | | | This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-12/+12
|
* Added Amiibo support (#1390)David2018-10-241-8/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed conflict with nfp * Few fixups for nfc * Conflict 2 * Fixed AttachAvailabilityChangeEvent * Conflict 3 * Fixed byte padding * Refactored amiibo to not reside in "System" * Removed remaining references of nfc from system * used enum for Nfc GetStateOld * Added missing newline * Moved file operations to front end * Conflict 4 * Amiibos now use structs and added mutexes * Removed amiibo_path
* service/nfc: Implement Create[x]Interface functionsLioncash2018-07-271-4/+43
| | | | These simply return the respective interface.
* service: Add nfc servicesLioncash2018-07-272-0/+198
| | | | | Adds the skeleton of the nfc service based off the information provided on Switch Brew.
* hle: Remove a large amount of 3ds-specific service code.bunnei2017-10-106-433/+0
|
* ResultVal: Remove MoveFrom()Yuri Kunde Schlesner2017-06-191-2/+2
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* Service: Remove unnecessary includes from service.hYuri Kunde Schlesner2017-06-061-0/+2
| | | | | This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
* Service/NFC: stub some functionsmailwl2017-01-144-20/+249
| | | | Tested on: Mini-Mario & Friends - amiibo Challenge
* Service/NFC: stub GetTagInRangeEventmailwl2016-12-304-0/+41
| | | | Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge
* service: Add nfc servicesLioncash2016-12-086-0/+161
3dbrew was used for the command information.