diff --git a/admin.options b/admin.options index 0873a92..1495a50 100644 --- a/admin.options +++ b/admin.options @@ -2,3 +2,6 @@ *AdminMessage.set_canned_message_module_messages max_size:201 *AdminMessage.get_canned_message_module_messages_response max_size:201 + +*AdminMessage.set_ringtone_message max_size:231 +*AdminMessage.get_ringtone_response max_size:231 diff --git a/admin.proto b/admin.proto index 79a6687..8b203d9 100644 --- a/admin.proto +++ b/admin.proto @@ -105,6 +105,11 @@ message AdminMessage { * TODO: REPLACE */ AUDIO_CONFIG = 7; + + /* + * TODO: REPLACE + */ + REMOTEHARDWARE_CONFIG = 8; } /* @@ -173,6 +178,16 @@ message AdminMessage { */ DeviceMetadata get_device_metadata_response = 13; + /* + * Get the Ringtone in the response to this message. + */ + bool get_ringtone_request = 14; + + /* + * Get the Ringtone in the response to this message. + */ + string get_ringtone_response = 15; + /* * Set the owner for this node */ @@ -202,6 +217,11 @@ message AdminMessage { */ string set_canned_message_module_messages = 36; + /* + * Set the ringtone for ExternalNotification. + */ + string set_ringtone_message = 37; + /* * Begins an edit transaction for config, module config, owner, and channel settings changes * This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings) diff --git a/config.proto b/config.proto index bfeb7a7..eafbdcd 100644 --- a/config.proto +++ b/config.proto @@ -466,6 +466,37 @@ message Config { * Override auto-detect in screen */ OledType oled = 7; + + enum DisplayMode { + /* + * Default. The old style for the 128x64 OLED screen + */ + DEFAULT = 0; + + /* + * Rearrange display elements to cater for bicolor OLED displays + */ + TWOCOLOR = 1; + + /* + * Same as TwoColor, but with inverted top bar. Not so good for Epaper displays + */ + INVERTED = 2; + + /* + * TFT Full Color Displays (not implemented yet) + */ + COLOR = 3; + } + /* + * Display Mode + */ + DisplayMode displaymode = 8; + + /* + * Print first line in pseudo-bold? FALSE is original style, TRUE is bold + */ + bool heading_bold = 9; } /* diff --git a/localonly.proto b/localonly.proto index f4c1859..46c83d8 100644 --- a/localonly.proto +++ b/localonly.proto @@ -100,6 +100,11 @@ message LocalModuleConfig { */ ModuleConfig.AudioConfig audio = 9; + /* + * The part of the config that is specific to the Remote Hardware module + */ + ModuleConfig.RemoteHardwareConfig remote_hardware = 10; + /* * A version integer used to invalidate old save files when we make * incompatible changes This integer is set at build time and is private to diff --git a/module_config.proto b/module_config.proto index c6e6cb0..4b4ad87 100644 --- a/module_config.proto +++ b/module_config.proto @@ -56,6 +56,17 @@ message ModuleConfig { bool json_enabled = 6; } + /* + * RemoteHardwareModule Config + */ + message RemoteHardwareConfig { + + /* + * Whether the Module is enabled + */ + bool enabled = 1; + } + /* * Audio Config for codec2 voice */ @@ -516,5 +527,10 @@ message ModuleConfig { */ AudioConfig audio = 8; + /* + * TODO: REPLACE + */ + RemoteHardwareConfig remote_hardware = 9; + } } diff --git a/rtttl.options b/rtttl.options new file mode 100644 index 0000000..1ae0c2f --- /dev/null +++ b/rtttl.options @@ -0,0 +1 @@ +*RTTTLConfig.ringtone max_size:230 diff --git a/rtttl.proto b/rtttl.proto new file mode 100644 index 0000000..2655c10 --- /dev/null +++ b/rtttl.proto @@ -0,0 +1,18 @@ +syntax = "proto3"; + +option java_package = "com.geeksville.mesh"; +option java_outer_classname = "RTTTLConfigProtos"; +option optimize_for = LITE_RUNTIME; +option go_package = "github.com/meshtastic/go/generated"; +option csharp_namespace = "Meshtastic.Protobufs"; + +/* + * Canned message module configuration. + */ +message RTTTLConfig { + + /* + * Ringtone for PWM Buzzer in RTTTL Format. + */ + string ringtone = 1; +}