Migrate half-duplex SERIAL_USART_TX_PIN
to DD (#24143)
This commit is contained in:
parent
7ca0424189
commit
5a0112df08
10 changed files with 10 additions and 14 deletions
|
@ -8,4 +8,3 @@
|
||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 200U // In ms in which the double tap can occur
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 200U // In ms in which the double tap can occur
|
||||||
|
|
||||||
#define EE_HANDS
|
#define EE_HANDS
|
||||||
#define SERIAL_USART_TX_PIN GP11
|
|
||||||
|
|
|
@ -33,7 +33,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"driver": "vendor"
|
"driver": "vendor",
|
||||||
|
"pin": "GP11"
|
||||||
},
|
},
|
||||||
"transport": {
|
"transport": {
|
||||||
"watchdog": true
|
"watchdog": true
|
||||||
|
|
|
@ -29,9 +29,6 @@
|
||||||
#define SNLED27351_CURRENT_TUNE \
|
#define SNLED27351_CURRENT_TUNE \
|
||||||
{ 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0x80, 0xFF, 0xFF } // 300mA
|
{ 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 */
|
/* Encoder Configuration */
|
||||||
#define ENCODER_DEFAULT_POS 0x3
|
#define ENCODER_DEFAULT_POS 0x3
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"driver": "usart"
|
"driver": "usart",
|
||||||
|
"pin": "A9"
|
||||||
},
|
},
|
||||||
"transport": {
|
"transport": {
|
||||||
"sync" :{
|
"sync" :{
|
||||||
|
|
|
@ -15,5 +15,4 @@
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define SERIAL_USART_TX_PIN B6
|
|
||||||
#define SERIAL_USART_SPEED 921600
|
#define SERIAL_USART_SPEED 921600
|
||||||
|
|
|
@ -73,7 +73,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"driver": "usart"
|
"driver": "usart",
|
||||||
|
"pin": "B6"
|
||||||
},
|
},
|
||||||
"transport": {
|
"transport": {
|
||||||
"sync": {
|
"sync": {
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define SERIAL_USART_TX_PIN B6
|
|
||||||
|
|
||||||
#define SERIAL_USART_SPEED 921600
|
#define SERIAL_USART_SPEED 921600
|
||||||
|
|
||||||
#define RGBLIGHT_LAYERS
|
#define RGBLIGHT_LAYERS
|
||||||
|
|
|
@ -66,7 +66,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"driver": "usart"
|
"driver": "usart",
|
||||||
|
"pin": "B6"
|
||||||
},
|
},
|
||||||
"transport": {
|
"transport": {
|
||||||
"sync": {
|
"sync": {
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define SERIAL_USART_TX_PIN GP0
|
|
||||||
|
|
||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
|
||||||
|
|
|
@ -42,7 +42,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"driver": "vendor"
|
"driver": "vendor",
|
||||||
|
"pin": "GP0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"encoder": {
|
"encoder": {
|
||||||
|
|
Loading…
Reference in a new issue