Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate half-duplex SERIAL_USART_TX_PIN to DD #24143

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion keyboards/chew/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 200U // In ms in which the double tap can occur

#define EE_HANDS
#define SERIAL_USART_TX_PIN GP11
3 changes: 2 additions & 1 deletion keyboards/chew/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
}
},
"serial": {
"driver": "vendor"
"driver": "vendor",
"pin": "GP11"
},
"transport": {
"watchdog": true
Expand Down
3 changes: 0 additions & 3 deletions keyboards/keychron/q11/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
#define SNLED27351_CURRENT_TUNE \
{ 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF } // 300mA

/* Split Keyboard specific options. */
#define SERIAL_USART_TX_PIN A9 // USART TX pin

/* Encoder Configuration */
#define ENCODER_DEFAULT_POS 0x3

Expand Down
3 changes: 2 additions & 1 deletion keyboards/keychron/q11/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
}
},
"serial": {
"driver": "usart"
"driver": "usart",
"pin": "A9"
},
"transport": {
"sync" :{
Expand Down
1 change: 0 additions & 1 deletion keyboards/mlego/m60_split/rev1/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@
*/
#pragma once

#define SERIAL_USART_TX_PIN B6
#define SERIAL_USART_SPEED 921600
3 changes: 2 additions & 1 deletion keyboards/mlego/m60_split/rev1/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
}
},
"serial": {
"driver": "usart"
"driver": "usart",
"pin": "B6"
},
"transport": {
"sync": {
Expand Down
2 changes: 0 additions & 2 deletions keyboards/mlego/m60_split/rev2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
*/
#pragma once

#define SERIAL_USART_TX_PIN B6

#define SERIAL_USART_SPEED 921600

#define RGBLIGHT_LAYERS
3 changes: 2 additions & 1 deletion keyboards/mlego/m60_split/rev2/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
}
},
"serial": {
"driver": "usart"
"driver": "usart",
"pin": "B6"
},
"transport": {
"sync": {
Expand Down
2 changes: 0 additions & 2 deletions keyboards/pica40/rev2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

#pragma once

#define SERIAL_USART_TX_PIN GP0

#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
Expand Down
3 changes: 2 additions & 1 deletion keyboards/pica40/rev2/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
}
},
"serial": {
"driver": "vendor"
"driver": "vendor",
"pin": "GP0"
}
},
"encoder": {
Expand Down
Loading