Skip to content

Commit

Permalink
fix(stm32): fix default pins of stm32
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Jan 23, 2025
1 parent 9c3ddad commit d2726fc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions stm32/keyboard.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ chip = "{{ chip_name }}"

[matrix]
# Input and output pins are mandatory
input_pins = ["PD9", "PD8", "PB13", "PB12"]
output_pins = ["PE13", "PE14", "PE15"]
input_pins = ["PA9", "PA8", "PA7", "PA6"]
output_pins = ["PA10", "PA14", "PA15"]
# WARNING: Currently row2col/col2row is set in RMK's feature gate, configs here do nothing actually
# row2col = true

Expand Down
4 changes: 2 additions & 2 deletions stm32f1/keyboard.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ chip = "{{ chip_name }}"

[matrix]
# Input and output pins are mandatory
input_pins = ["PD9", "PD8", "PB13", "PB12"]
output_pins = ["PE13", "PE14", "PE15"]
input_pins = ["PA9", "PA8", "PA7", "PA6"]
output_pins = ["PA10", "PA14", "PA15"]
# WARNING: Currently row2col/col2row is set in RMK's feature gate, configs here do nothing actually
# row2col = true

Expand Down
4 changes: 2 additions & 2 deletions stm32f103c8/keyboard.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ chip = "{{ chip_name }}"

[matrix]
# Input and output pins are mandatory
input_pins = ["PD9", "PD8", "PB13", "PB12"]
output_pins = ["PE13", "PE14", "PE15"]
input_pins = ["PA9", "PA8", "PA7", "PA6"]
output_pins = ["PA10", "PA14", "PA15"]
# WARNING: Currently row2col/col2row is set in RMK's feature gate, configs here do nothing actually
# row2col = true

Expand Down
4 changes: 2 additions & 2 deletions stm32h7b0vb/keyboard.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ chip = "{{ chip_name }}"

[matrix]
# Input and output pins are mandatory
input_pins = ["PD9", "PD8", "PB13", "PB12"]
output_pins = ["PE13", "PE14", "PE15"]
input_pins = ["PA9", "PA8", "PA7", "PA6"]
output_pins = ["PA10", "PA14", "PA15"]
# WARNING: Currently row2col/col2row is set in RMK's feature gate, configs here do nothing actually
# row2col = true

Expand Down

0 comments on commit d2726fc

Please sign in to comment.