mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-25 01:42:15 +00:00
regen protos
This commit is contained in:
parent
803dc69ccd
commit
e85af2f732
@ -1 +1 @@
|
|||||||
Subproject commit dabfdfb90c62bd862536157431083f99c8fde003
|
Subproject commit d3375fe599da1dd48572354325d3186eccf6f449
|
@ -54,7 +54,7 @@ extern const pb_msgdesc_t ChannelSet_msg;
|
|||||||
#define ChannelSet_fields &ChannelSet_msg
|
#define ChannelSet_fields &ChannelSet_msg
|
||||||
|
|
||||||
/* Maximum encoded size of messages (where known) */
|
/* Maximum encoded size of messages (where known) */
|
||||||
#define ChannelSet_size 559
|
#define ChannelSet_size 581
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /* extern "C" */
|
} /* extern "C" */
|
||||||
|
@ -38,25 +38,8 @@ typedef PB_BYTES_ARRAY_T(32) ChannelSettings_psk_t;
|
|||||||
FIXME: explain how apps use channels for security.
|
FIXME: explain how apps use channels for security.
|
||||||
explain how remote settings and remote gpio are managed as an example */
|
explain how remote settings and remote gpio are managed as an example */
|
||||||
typedef struct _ChannelSettings {
|
typedef struct _ChannelSettings {
|
||||||
/* NOTE: this field is _independent_ and unrelated to the concepts in channel.proto.
|
/* Deprecated in favor of LoraConfig.channel_num */
|
||||||
this is controlling the actual hardware frequency the radio is transmitting on.
|
uint32_t channel_num;
|
||||||
In a perfect world we would have called it something else (band?) but I forgot to make this change during the big 1.2 renaming.
|
|
||||||
Most users should never need to be exposed to this field/concept.
|
|
||||||
A channel number between 1 and 13 (or whatever the max is in the current
|
|
||||||
region). If ZERO then the rule is "use the old channel name hash based
|
|
||||||
algorithm to derive the channel number")
|
|
||||||
If using the hash algorithm the channel number will be: hash(channel_name) %
|
|
||||||
NUM_CHANNELS (Where num channels depends on the regulatory region).
|
|
||||||
NUM_CHANNELS_US is 13, for other values see MeshRadio.h in the device code.
|
|
||||||
hash a string into an integer - djb2 by Dan Bernstein. -
|
|
||||||
http://www.cse.yorku.ca/~oz/hash.html
|
|
||||||
unsigned long hash(char *str) {
|
|
||||||
unsigned long hash = 5381; int c;
|
|
||||||
while ((c = *str++) != 0)
|
|
||||||
hash = ((hash << 5) + hash) + (unsigned char) c;
|
|
||||||
return hash;
|
|
||||||
} */
|
|
||||||
uint8_t channel_num;
|
|
||||||
/* A simple pre-shared key for now for crypto.
|
/* A simple pre-shared key for now for crypto.
|
||||||
Must be either 0 bytes (no crypto), 16 bytes (AES128), or 32 bytes (AES256).
|
Must be either 0 bytes (no crypto), 16 bytes (AES128), or 32 bytes (AES256).
|
||||||
A special shorthand is used for 1 byte long psks.
|
A special shorthand is used for 1 byte long psks.
|
||||||
@ -163,8 +146,8 @@ extern const pb_msgdesc_t Channel_msg;
|
|||||||
#define Channel_fields &Channel_msg
|
#define Channel_fields &Channel_msg
|
||||||
|
|
||||||
/* Maximum encoded size of messages (where known) */
|
/* Maximum encoded size of messages (where known) */
|
||||||
#define ChannelSettings_size 59
|
#define ChannelSettings_size 62
|
||||||
#define Channel_size 74
|
#define Channel_size 77
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /* extern "C" */
|
} /* extern "C" */
|
||||||
|
@ -108,14 +108,15 @@ typedef struct _Config_DisplayConfig {
|
|||||||
typedef struct _Config_LoRaConfig {
|
typedef struct _Config_LoRaConfig {
|
||||||
bool use_preset;
|
bool use_preset;
|
||||||
Config_LoRaConfig_ModemPreset modem_preset;
|
Config_LoRaConfig_ModemPreset modem_preset;
|
||||||
uint32_t bandwidth;
|
uint16_t bandwidth;
|
||||||
uint32_t spread_factor;
|
uint32_t spread_factor;
|
||||||
uint32_t coding_rate;
|
uint8_t coding_rate;
|
||||||
float frequency_offset;
|
float frequency_offset;
|
||||||
Config_LoRaConfig_RegionCode region;
|
Config_LoRaConfig_RegionCode region;
|
||||||
uint32_t hop_limit;
|
uint32_t hop_limit;
|
||||||
bool tx_enabled;
|
bool tx_enabled;
|
||||||
int32_t tx_power;
|
int8_t tx_power;
|
||||||
|
uint8_t channel_num;
|
||||||
pb_size_t ignore_incoming_count;
|
pb_size_t ignore_incoming_count;
|
||||||
uint32_t ignore_incoming[3];
|
uint32_t ignore_incoming[3];
|
||||||
} Config_LoRaConfig;
|
} Config_LoRaConfig;
|
||||||
@ -208,7 +209,7 @@ extern "C" {
|
|||||||
#define Config_PowerConfig_init_default {0, 0, 0, 0, 0, 0, 0, 0}
|
#define Config_PowerConfig_init_default {0, 0, 0, 0, 0, 0, 0, 0}
|
||||||
#define Config_NetworkConfig_init_default {0, _Config_NetworkConfig_WiFiMode_MIN, "", "", ""}
|
#define Config_NetworkConfig_init_default {0, _Config_NetworkConfig_WiFiMode_MIN, "", "", ""}
|
||||||
#define Config_DisplayConfig_init_default {0, _Config_DisplayConfig_GpsCoordinateFormat_MIN, 0, 0, 0, _Config_DisplayConfig_DisplayUnits_MIN}
|
#define Config_DisplayConfig_init_default {0, _Config_DisplayConfig_GpsCoordinateFormat_MIN, 0, 0, 0, _Config_DisplayConfig_DisplayUnits_MIN}
|
||||||
#define Config_LoRaConfig_init_default {0, _Config_LoRaConfig_ModemPreset_MIN, 0, 0, 0, 0, _Config_LoRaConfig_RegionCode_MIN, 0, 0, 0, 0, {0, 0, 0}}
|
#define Config_LoRaConfig_init_default {0, _Config_LoRaConfig_ModemPreset_MIN, 0, 0, 0, 0, _Config_LoRaConfig_RegionCode_MIN, 0, 0, 0, 0, 0, {0, 0, 0}}
|
||||||
#define Config_BluetoothConfig_init_default {0, _Config_BluetoothConfig_PairingMode_MIN, 0}
|
#define Config_BluetoothConfig_init_default {0, _Config_BluetoothConfig_PairingMode_MIN, 0}
|
||||||
#define Config_init_zero {0, {Config_DeviceConfig_init_zero}}
|
#define Config_init_zero {0, {Config_DeviceConfig_init_zero}}
|
||||||
#define Config_DeviceConfig_init_zero {_Config_DeviceConfig_Role_MIN, 0, 0}
|
#define Config_DeviceConfig_init_zero {_Config_DeviceConfig_Role_MIN, 0, 0}
|
||||||
@ -216,7 +217,7 @@ extern "C" {
|
|||||||
#define Config_PowerConfig_init_zero {0, 0, 0, 0, 0, 0, 0, 0}
|
#define Config_PowerConfig_init_zero {0, 0, 0, 0, 0, 0, 0, 0}
|
||||||
#define Config_NetworkConfig_init_zero {0, _Config_NetworkConfig_WiFiMode_MIN, "", "", ""}
|
#define Config_NetworkConfig_init_zero {0, _Config_NetworkConfig_WiFiMode_MIN, "", "", ""}
|
||||||
#define Config_DisplayConfig_init_zero {0, _Config_DisplayConfig_GpsCoordinateFormat_MIN, 0, 0, 0, _Config_DisplayConfig_DisplayUnits_MIN}
|
#define Config_DisplayConfig_init_zero {0, _Config_DisplayConfig_GpsCoordinateFormat_MIN, 0, 0, 0, _Config_DisplayConfig_DisplayUnits_MIN}
|
||||||
#define Config_LoRaConfig_init_zero {0, _Config_LoRaConfig_ModemPreset_MIN, 0, 0, 0, 0, _Config_LoRaConfig_RegionCode_MIN, 0, 0, 0, 0, {0, 0, 0}}
|
#define Config_LoRaConfig_init_zero {0, _Config_LoRaConfig_ModemPreset_MIN, 0, 0, 0, 0, _Config_LoRaConfig_RegionCode_MIN, 0, 0, 0, 0, 0, {0, 0, 0}}
|
||||||
#define Config_BluetoothConfig_init_zero {0, _Config_BluetoothConfig_PairingMode_MIN, 0}
|
#define Config_BluetoothConfig_init_zero {0, _Config_BluetoothConfig_PairingMode_MIN, 0}
|
||||||
|
|
||||||
/* Field tags (for use in manual encoding/decoding) */
|
/* Field tags (for use in manual encoding/decoding) */
|
||||||
@ -242,6 +243,7 @@ extern "C" {
|
|||||||
#define Config_LoRaConfig_hop_limit_tag 8
|
#define Config_LoRaConfig_hop_limit_tag 8
|
||||||
#define Config_LoRaConfig_tx_enabled_tag 9
|
#define Config_LoRaConfig_tx_enabled_tag 9
|
||||||
#define Config_LoRaConfig_tx_power_tag 10
|
#define Config_LoRaConfig_tx_power_tag 10
|
||||||
|
#define Config_LoRaConfig_channel_num_tag 11
|
||||||
#define Config_LoRaConfig_ignore_incoming_tag 103
|
#define Config_LoRaConfig_ignore_incoming_tag 103
|
||||||
#define Config_NetworkConfig_wifi_enabled_tag 1
|
#define Config_NetworkConfig_wifi_enabled_tag 1
|
||||||
#define Config_NetworkConfig_wifi_mode_tag 2
|
#define Config_NetworkConfig_wifi_mode_tag 2
|
||||||
@ -350,6 +352,7 @@ X(a, STATIC, SINGULAR, UENUM, region, 7) \
|
|||||||
X(a, STATIC, SINGULAR, UINT32, hop_limit, 8) \
|
X(a, STATIC, SINGULAR, UINT32, hop_limit, 8) \
|
||||||
X(a, STATIC, SINGULAR, BOOL, tx_enabled, 9) \
|
X(a, STATIC, SINGULAR, BOOL, tx_enabled, 9) \
|
||||||
X(a, STATIC, SINGULAR, INT32, tx_power, 10) \
|
X(a, STATIC, SINGULAR, INT32, tx_power, 10) \
|
||||||
|
X(a, STATIC, SINGULAR, UINT32, channel_num, 11) \
|
||||||
X(a, STATIC, REPEATED, UINT32, ignore_incoming, 103)
|
X(a, STATIC, REPEATED, UINT32, ignore_incoming, 103)
|
||||||
#define Config_LoRaConfig_CALLBACK NULL
|
#define Config_LoRaConfig_CALLBACK NULL
|
||||||
#define Config_LoRaConfig_DEFAULT NULL
|
#define Config_LoRaConfig_DEFAULT NULL
|
||||||
@ -384,7 +387,7 @@ extern const pb_msgdesc_t Config_BluetoothConfig_msg;
|
|||||||
#define Config_BluetoothConfig_size 10
|
#define Config_BluetoothConfig_size 10
|
||||||
#define Config_DeviceConfig_size 6
|
#define Config_DeviceConfig_size 6
|
||||||
#define Config_DisplayConfig_size 20
|
#define Config_DisplayConfig_size 20
|
||||||
#define Config_LoRaConfig_size 69
|
#define Config_LoRaConfig_size 67
|
||||||
#define Config_NetworkConfig_size 137
|
#define Config_NetworkConfig_size 137
|
||||||
#define Config_PositionConfig_size 30
|
#define Config_PositionConfig_size 30
|
||||||
#define Config_PowerConfig_size 43
|
#define Config_PowerConfig_size 43
|
||||||
|
@ -164,7 +164,7 @@ extern const pb_msgdesc_t OEMStore_msg;
|
|||||||
#define OEMStore_fields &OEMStore_msg
|
#define OEMStore_fields &OEMStore_msg
|
||||||
|
|
||||||
/* Maximum encoded size of messages (where known) */
|
/* Maximum encoded size of messages (where known) */
|
||||||
#define ChannelFile_size 614
|
#define ChannelFile_size 638
|
||||||
#define DeviceState_size 21800
|
#define DeviceState_size 21800
|
||||||
#define OEMStore_size 2106
|
#define OEMStore_size 2106
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ extern const pb_msgdesc_t LocalModuleConfig_msg;
|
|||||||
#define LocalModuleConfig_fields &LocalModuleConfig_msg
|
#define LocalModuleConfig_fields &LocalModuleConfig_msg
|
||||||
|
|
||||||
/* Maximum encoded size of messages (where known) */
|
/* Maximum encoded size of messages (where known) */
|
||||||
#define LocalConfig_size 336
|
#define LocalConfig_size 334
|
||||||
#define LocalModuleConfig_size 270
|
#define LocalModuleConfig_size 270
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user