Merge pull request #227 from meshtastic/extend_devicemetdata

Add canShutdown and hasWifi
This commit is contained in:
Ben Meadors 2022-10-30 08:29:27 -05:00 committed by GitHub
commit 46bc0afe05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,4 +19,24 @@ 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 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 = 6;
}