2020-03-02 17:47:10 +00:00
|
|
|
# options for nanopb
|
|
|
|
# https://jpa.kapsi.fi/nanopb/docs/reference.html#proto-file-options
|
|
|
|
|
|
|
|
*macaddr max_size:6 fixed_length:true # macaddrs
|
|
|
|
*id max_size:16 # node id strings
|
|
|
|
|
|
|
|
*User.long_name max_size:40
|
|
|
|
*User.short_name max_size:5
|
|
|
|
|
|
|
|
# FIXME pick a higher number someday? or do dynamic alloc in nanopb?
|
|
|
|
*DeviceState.node_db max_count:32
|
|
|
|
*DeviceState.receive_queue max_count:32
|
|
|
|
|
2020-05-11 22:40:04 +00:00
|
|
|
*RouteDiscovery.route max_count:8
|
|
|
|
|
2020-03-02 17:47:10 +00:00
|
|
|
# FIXME, max out based on total SubPacket size And do fragmentation and reassembly (for larger payloads) at the Android layer, not the esp32 layer.
|
|
|
|
# note: this payload length is ONLY the bytes that are sent inside of the radiohead packet
|
|
|
|
*Data.payload max_size:251
|
|
|
|
|
2020-05-10 02:06:45 +00:00
|
|
|
# 256 bit or 128 bit psk key
|
|
|
|
*ChannelSettings.psk max_size:32
|
2020-03-02 17:47:10 +00:00
|
|
|
*ChannelSettings.name max_size:12
|
|
|
|
|
2020-05-04 14:43:15 +00:00
|
|
|
# The device code doesn't use this legacy field - though the apps still might
|
|
|
|
*Position.latitude_d type:FT_IGNORE
|
|
|
|
*Position.longitude_d type:FT_IGNORE
|
|
|
|
|
2020-03-03 16:23:20 +00:00
|
|
|
*MyNodeInfo.firmware_version max_size:12
|
2020-03-31 02:33:46 +00:00
|
|
|
*MyNodeInfo.hw_model max_size:16
|
2020-03-03 16:23:20 +00:00
|
|
|
*MyNodeInfo.region max_size:12
|
|
|
|
|
2020-04-20 23:15:52 +00:00
|
|
|
*DebugString.message max_size:256
|
|
|
|
|
2020-05-10 00:07:47 +00:00
|
|
|
# Note: the actual limit (because of header bytes) on the size of encrypted payloads is 251 bytes, but I use 256
|
|
|
|
# here because we might need to fill with zeros for padding to encryption block size (16 bytes per block)
|
|
|
|
*MeshPacket.encrypted max_size:256
|
|
|
|
*MeshPacket.payload anonymous_oneof:true
|
|
|
|
|
2020-05-12 20:34:44 +00:00
|
|
|
*SubPacket.payload anonymous_oneof:true
|
|
|
|
|
2020-05-23 16:24:54 +00:00
|
|
|
# Max of three ignored nodes for our testing
|
|
|
|
*UserPreferences.ignore_incoming max_count:3
|
|
|
|
|
2020-03-02 17:47:10 +00:00
|
|
|
# MyMessage.name max_size:40
|
|
|
|
# or fixed_length or fixed_count, or max_count
|
|
|
|
|