Bump GPIO Pickers to 45

This commit is contained in:
Garth Vander Houwen 2023-04-03 17:48:58 -07:00
parent f992d6e47a
commit b455fb25c6
11 changed files with 319 additions and 271 deletions

View file

@ -98,7 +98,7 @@ struct SerialConfig: View {
Section(header: Text("GPIO")) {
Picker("Receive data (rxd) GPIO pin", selection: $rxd) {
ForEach(0..<40) {
ForEach(0..<46) {
if $0 == 0 {
Text("unset")
} else {
@ -109,7 +109,7 @@ struct SerialConfig: View {
.pickerStyle(DefaultPickerStyle())
Picker("Transmit data (txd) GPIO pin", selection: $txd) {
ForEach(0..<40) {
ForEach(0..<46) {
if $0 == 0 {
Text("unset")
} else {