summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-11-27service: Eliminate usages of the global system instanceLioncash2-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.
2020-06-27nfc: Update function tableVolcaEM1-3/+3
This was based on Switchbrew page: https://switchbrew.org/wiki/NFC_services
2019-11-12service: Update function tablesLioncash1-0/+1
Keeps the function tables up to date. Updated based off information from Switchbrew.
2019-03-29core/yuzu: Remove enable_nfc settingfearlessTobi1-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.
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-12/+12
2018-10-24Added Amiibo support (#1390)David1-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
2018-07-27service/nfc: Implement Create[x]Interface functionsLioncash1-4/+43
These simply return the respective interface.
2018-07-27service: Add nfc servicesLioncash2-0/+198
Adds the skeleton of the nfc service based off the information provided on Switch Brew.
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei6-433/+0
2017-06-19ResultVal: Remove MoveFrom()Yuri Kunde Schlesner1-2/+2
Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
2017-06-06Service: Remove unnecessary includes from service.hYuri Kunde Schlesner1-0/+2
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
2017-01-14Service/NFC: stub some functionsmailwl4-20/+249
Tested on: Mini-Mario & Friends - amiibo Challenge
2016-12-30Service/NFC: stub GetTagInRangeEventmailwl4-0/+41
Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge
2016-12-08service: Add nfc servicesLioncash6-0/+161
3dbrew was used for the command information.