From 8fdf23572802810097d94f7e4e1fe75b91d576f0 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 30 Oct 2022 08:04:34 -0500 Subject: [PATCH] Add canShutdown and hasWifi --- device_metadata.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/device_metadata.proto b/device_metadata.proto index 3492cd7..95f94a2 100644 --- a/device_metadata.proto +++ b/device_metadata.proto @@ -19,4 +19,14 @@ message DeviceMetadata { * Device state version */ uint32 device_state_version = 2; + + /* + * Indicates whether the device can shutdown CPU natively or via power management chip + */ + bool canShutdown = 3; + + /* + * Indicates that the device has native wifi capabilities + */ + bool hasWifi = 4; } \ No newline at end of file