From 8fdf23572802810097d94f7e4e1fe75b91d576f0 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 30 Oct 2022 08:04:34 -0500 Subject: [PATCH 1/4] 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 From 2c872dc4307e7bb057df114a3292fff3a5779ff5 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 30 Oct 2022 08:13:07 -0500 Subject: [PATCH 2/4] Added a couple --- device_metadata.proto | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/device_metadata.proto b/device_metadata.proto index 95f94a2..5cbf6ce 100644 --- a/device_metadata.proto +++ b/device_metadata.proto @@ -26,7 +26,17 @@ message DeviceMetadata { bool canShutdown = 3; /* - * Indicates that the device has native wifi capabilities + * Indicates that the device has native wifi capability */ bool hasWifi = 4; + + /* + * Indicates that the device has native bluetooth capability + */ + bool hasBluetooth = 5; + + /* + * Indicates that the device has an ethernet peripheral + */ + bool hasEthernet = 5; } \ No newline at end of file From 75f218baa4ec73431b4316c47beb6058d844c31d Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 30 Oct 2022 08:13:23 -0500 Subject: [PATCH 3/4] Index --- device_metadata.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_metadata.proto b/device_metadata.proto index 5cbf6ce..141e8ea 100644 --- a/device_metadata.proto +++ b/device_metadata.proto @@ -38,5 +38,5 @@ message DeviceMetadata { /* * Indicates that the device has an ethernet peripheral */ - bool hasEthernet = 5; + bool hasEthernet = 6; } \ No newline at end of file From b7b44915d866f5f81d1aae4c01f60fdfab894a1b Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 30 Oct 2022 08:14:22 -0500 Subject: [PATCH 4/4] Indent --- device_metadata.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_metadata.proto b/device_metadata.proto index 141e8ea..fd1bf47 100644 --- a/device_metadata.proto +++ b/device_metadata.proto @@ -38,5 +38,5 @@ message DeviceMetadata { /* * Indicates that the device has an ethernet peripheral */ - bool hasEthernet = 6; + bool hasEthernet = 6; } \ No newline at end of file