mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Merge pull request #576 from meshtastic/device-profile-update1
add fixed_position, ringtone, and canned_messages to `DeviceProfile`
This commit is contained in:
commit
5709c0a05e
2 changed files with 19 additions and 1 deletions
|
|
@ -1,2 +1,4 @@
|
|||
*DeviceProfile.long_name max_size:40
|
||||
*DeviceProfile.short_name max_size:5
|
||||
*DeviceProfile.short_name max_size:5
|
||||
*DeviceProfile.ringtone max_size:231
|
||||
*DeviceProfile.canned_messages max_size:201
|
||||
|
|
@ -3,6 +3,7 @@ syntax = "proto3";
|
|||
package meshtastic;
|
||||
|
||||
import "meshtastic/localonly.proto";
|
||||
import "meshtastic/mesh.proto";
|
||||
|
||||
option csharp_namespace = "Meshtastic.Protobufs";
|
||||
option go_package = "github.com/meshtastic/go/generated";
|
||||
|
|
@ -39,4 +40,19 @@ message DeviceProfile {
|
|||
* The ModuleConfig of the node
|
||||
*/
|
||||
optional LocalModuleConfig module_config = 5;
|
||||
|
||||
/*
|
||||
* Fixed position data
|
||||
*/
|
||||
optional Position fixed_position = 6;
|
||||
|
||||
/*
|
||||
* Ringtone for ExternalNotification
|
||||
*/
|
||||
optional string ringtone = 7;
|
||||
|
||||
/*
|
||||
* Predefined messages for CannedMessage
|
||||
*/
|
||||
optional string canned_messages = 8;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue