aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2022-05-27service: hid: Implement LoadSixAxisSensorCalibrationParameter and ↵german77
GetSixAxisSensorIcInformation Needed by Nintendo Switch Sports
2022-05-27service: hid: Implement EnableSixAxisSensorUnalteredPassthrough and ↵german77
IsSixAxisSensorUnalteredPassthroughEnabled Needed by Nintendo Switch Sports
2022-05-27service: hid: Add error handling to sixaxis functionsgerman77
2022-05-27service: hid: Refractor sixaxis functionsgerman77
2022-05-27service: hid: Implement MergeSingleJoyAsDualJoy according to REgerman77
2022-05-27service: hid: Add error handling to setNpadAssignment and variantsgerman77
2022-05-27service: hid: Quick RE fixes and commentsgerman77
2022-05-23input_common: Make vibration request asyncNarr the Reg
2022-05-23input_common: touch: Rewrite touch driver to support multiple touch pointsgerman77
2022-05-14general: Avoid ambiguous format_to compilation errorsLioncash
Ensures that we're using the fmt version of format_to. These are also the only three outliers. All of the other formatters we have are properly qualified.
2022-05-13time_zone_manager: Use s8 for month length tablesMorph
Using this smaller type saves 512 bytes in the compiled executable.
2022-05-09service: notifa: Implement most part of this servicegerman77
Implements partially RegisterAlarmSetting, UpdateAlarmSetting, LoadApplicationParameter, DeleteAlarmSetting. Needed for Fitness `Boxing 2: Rhythm & Exercise` and `Ring Fit Adventure`.
2022-05-06service: hid: Fix motion refresh rateNarr the Reg
2022-05-06service: hid: Disable correctly motion inputgerman77
2022-05-03hle/result: Update std::expected replacement messageMorph
std::expected is included in C++23
2022-05-03hle/result: Add ResultRange overload in ResultValMorph
Also marks the implicit conversion operator as constexpr instead of consteval as the constructor is not constant evaluated.
2022-05-03Merge pull request #8272 from german77/stick_rangebunnei
yuzu: config: Improve analog stick mapping
2022-05-02hle/result: Implement ResultRangeMorph
A ResultRange defines an inclusive range of error descriptions within an error module. This can be used to check whether the description of a given ResultCode falls within the range. The conversion function returns a ResultCode with its description set to description_start.
2022-04-29Merge pull request #8274 from german77/firmwareMorph
service: hid: Stub IsFirmwareUpdateNeededForNotification
2022-04-28chore: add missing SPDX tagsAndrea Pappacoda
Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
2022-04-27Merge pull request #8229 from german77/reinterpret2bunnei
service: hid: Access shared memory directly
2022-04-27service: hid: Stub IsFirmwareUpdateNeededForNotificationgerman77
Used in Fitness Boxing 2: Rhythm & Exercise (0100073011382000)
2022-04-26yuzu: Config allow to delete single axis directions when buttons are mapped ↵Narr the Reg
to a stick
2022-04-24Merge pull request #8261 from liamwhite/jit-cleanupMai M
service: jit: document and clean up
2022-04-24service: jit: document and clean upLiam
2022-04-24Merge pull request #8260 from Morph1984/c4146Mai M
kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF
2022-04-24kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFFMorph
Resolves the C4146 compiler warning on MSVC.
2022-04-24Remove unused PrepareReschedule functionMerry
2022-04-23service: hid: Ensure all structs are initializedNarr the Reg
2022-04-23service: hid: Access shared memory directlyNarr the Reg
2022-04-23general: Convert source file copyright comments over to SPDXMorph
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.
2022-04-22Merge pull request #7976 from BytesGalore/masterbunnei
loader: log the type of mismatching file-extension
2022-04-21Merge pull request #8222 from german77/sixaxis_testbunnei
service: hid: Improve accuracy of sixaxis functions
2022-04-20core/arm: separate backtrace collectionLiam
2022-04-18service: hid: Improve accuracy of sixaxis functionsNarr the Reg
2022-04-16Merge pull request #6558 from german77/ringcon2Fernando S
hidbus: Implement hidbus and ringcon
2022-04-16Merge pull request #8188 from merryhime/jit-race-page-table-changedbunnei
dynarmic: Fix race when switching page tables
2022-04-16yuzu: Add custom ringcon configurationgerman77
2022-04-16hidbus: Implement hidbus and ringcongerman77
2022-04-16Merge pull request #8172 from bunnei/kernel-mutexFernando S
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
2022-04-13Merge pull request #8202 from merryhime/fix-single-coreFernando S
dynarmic: Fix single core mode
2022-04-13dynarmic: Fix single core modemerry
Regression introduced in a5d040df3d. Closes #8201.
2022-04-13service: jit: Implement the JIT serviceLiam
2022-04-12Merge pull request #8165 from bunnei/ensure-session-port-cleanupbunnei
Kernel: Track open references to KServerPort and KServerSession.
2022-04-12Merge pull request #8178 from tech-ticks/skyline-icache-fixbunnei
hle: kernel: Invalidate entire icache in UnmapProcessMemory and UnmapCodeMemory (fixes #8174)
2022-04-11core: hle: kernel: k_thread: Rework dummy thread waiting.bunnei
2022-04-11core: hle: service: Allocate a service thread.bunnei
2022-04-11hle: kernel: k_spin_lock: Remove unused ThreadPause.bunnei
2022-04-11hle: kernel: Use std::mutex instead of spin locks for most kernel locking.bunnei
2022-04-11Merge pull request #8157 from lat9nq/kernel-racesbunnei
kernel: Fix some data races