mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
* More strings
* Add duty cycle error * Don't log local telemetry in the mesh log
This commit is contained in:
parent
5da522b911
commit
eedbef57fb
21 changed files with 256 additions and 195 deletions
|
|
@ -41,20 +41,20 @@ struct SerialConfig: View {
|
|||
|
||||
Toggle(isOn: $echo) {
|
||||
|
||||
Label("Echo", systemImage: "repeat")
|
||||
Label("echo", systemImage: "repeat")
|
||||
}
|
||||
.toggleStyle(SwitchToggleStyle(tint: .accentColor))
|
||||
Text("If set, any packets you send will be echoed back to your device.")
|
||||
.font(.caption)
|
||||
|
||||
Picker("Baud Rate", selection: $baudRate ) {
|
||||
Picker("Baud", selection: $baudRate ) {
|
||||
ForEach(SerialBaudRates.allCases) { sbr in
|
||||
Text(sbr.description)
|
||||
}
|
||||
}
|
||||
.pickerStyle(DefaultPickerStyle())
|
||||
|
||||
Picker("Timeout", selection: $timeout ) {
|
||||
Picker("timeout", selection: $timeout ) {
|
||||
ForEach(SerialTimeoutIntervals.allCases) { sti in
|
||||
Text(sti.description)
|
||||
}
|
||||
|
|
@ -63,7 +63,7 @@ struct SerialConfig: View {
|
|||
Text("The amount of time to wait before we consider your packet as done.")
|
||||
.font(.caption)
|
||||
|
||||
Picker("Mode", selection: $mode ) {
|
||||
Picker("mode", selection: $mode ) {
|
||||
ForEach(SerialModeTypes.allCases) { smt in
|
||||
Text(smt.description)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue