You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
837 B
53 lines
837 B
/* |
|
* Copyright (c) 2024 Silicon Laboratories Inc. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <dt-bindings/pinctrl/silabs/xg24-pinctrl.h> |
|
|
|
&pinctrl { |
|
eusart1_default: eusart1_default { |
|
group0 { |
|
pins = <EUSART1_TX_PC3>, <EUSART1_SCLK_PC1>; |
|
drive-push-pull; |
|
output-high; |
|
}; |
|
|
|
group1 { |
|
pins = <EUSART1_RX_PC2>; |
|
input-enable; |
|
silabs,input-filter; |
|
}; |
|
}; |
|
|
|
itm_default: itm_default { |
|
group0 { |
|
pins = <GPIO_SWV_PA3>; |
|
drive-push-pull; |
|
output-high; |
|
}; |
|
}; |
|
|
|
i2c0_default: i2c0_default { |
|
group0 { |
|
pins = <I2C0_SCL_PC4>, <I2C0_SDA_PC5>; |
|
bias-pull-up; |
|
drive-open-drain; |
|
}; |
|
}; |
|
|
|
usart0_default: usart0_default { |
|
group0 { |
|
pins = <USART0_TX_PA5>; |
|
drive-push-pull; |
|
output-high; |
|
}; |
|
|
|
group1 { |
|
pins = <USART0_RX_PA6>; |
|
input-enable; |
|
silabs,input-filter; |
|
}; |
|
}; |
|
};
|
|
|