// SPDX-License-Identifier: MPL-2.0 // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) #pragma once #include namespace skyline { namespace constant { constexpr u8 HidEntryCount{17}; //!< The amount of entries in each HID device constexpr u8 NpadCount{10}; //!< The amount of NPads in shared memory constexpr u8 ControllerCount{8}; //!< The maximum amount of guest controllers constexpr u32 NpadBatteryFull{2}; //!< The full battery state of an npad } namespace input { /** * @brief A common part of the header for all sections */ struct CommonHeader { u64 timestamp; //!< The timestamp of the latest entry in ticks u64 entryCount; //!< The number of written entries u64 currentEntry; //!< The index of the latest entry u64 maxEntry; //!< The maximum entry index }; static_assert(sizeof(CommonHeader) == 0x20); } }