From 741d59faea1909606cd50907fa347998eaeda032 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Wed, 3 Mar 2021 09:37:50 +0800 Subject: [PATCH] keep device settings backwards compatible --- deviceonly.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deviceonly.proto b/deviceonly.proto index b7365c3..bd38219 100644 --- a/deviceonly.proto +++ b/deviceonly.proto @@ -17,6 +17,10 @@ option java_outer_classname = "DeviceOnly"; * the receive queue and use the preferences store for the other stuff */ message DeviceState { + + // Was secondary_channels before 1.2 + reserved 12; + RadioConfig radio = 1; /* @@ -64,5 +68,5 @@ message DeviceState { /* * The channels our node knows about */ - repeated Channel channels = 12; + repeated Channel channels = 13; } \ No newline at end of file