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.
21 lines
396 B
21 lines
396 B
/* |
|
* Copyright (c) 2024 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <zephyr/dt-bindings/pinctrl/renesas/pinctrl-ra.h> |
|
|
|
&pinctrl { |
|
sci2_default: sci2_default { |
|
group1 { |
|
/* tx */ |
|
psels = <RA_PSEL(RA_PSEL_SCI_2, 3, 2)>; |
|
drive-strength = "medium"; |
|
}; |
|
group2 { |
|
/* rx */ |
|
psels = <RA_PSEL(RA_PSEL_SCI_2, 3, 1)>; |
|
}; |
|
}; |
|
};
|
|
|