Refactor AppBarTitle widget to remove unused style parameter; update related screens to reflect changes

Improve SNR handling by adding validation for spreading factor range in snrUiFromSNR function
Update contact handling in MeshCoreConnector to fix variable naming and improve readability
Stop parsing unsupported LPP types in CayenneLpp to avoid misalignment
This commit is contained in:
Winston Lowe
2026-02-15 19:38:34 -08:00
parent 71152bd3eb
commit 52a578777d
7 changed files with 19 additions and 22 deletions
+2 -3
View File
@@ -258,9 +258,8 @@ class CayenneLpp {
break;
// Add more types as needed...
default:
throw Exception(
'Unsupported LPP type: ${type.toRadixString(16).padLeft(2, '0')}',
);
//Stopped parsing to avoid misalignment
return channels.values.toList();
}
}