2026-07-25 12:39:32 +02:00
|
|
|
internal import CPlaydate
|
|
|
|
|
|
|
|
|
|
extension System {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Peripherals for `setPeripheralsEnabled(_:)`. Wraps `PDPeripherals`.
|
2026-07-25 12:39:32 +02:00
|
|
|
public struct Peripherals: OptionSet, Sendable {
|
|
|
|
|
public let rawValue: UInt32
|
|
|
|
|
public init(rawValue: UInt32) { self.rawValue = rawValue }
|
|
|
|
|
|
|
|
|
|
public static let none = Peripherals([])
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Disabled by default.
|
2026-07-25 12:39:32 +02:00
|
|
|
public static let accelerometer = Peripherals(rawValue: UInt32(kAccelerometer.rawValue))
|
|
|
|
|
public static let all = Peripherals(rawValue: UInt32(kAllPeripherals.rawValue))
|
|
|
|
|
}
|
|
|
|
|
}
|