Update configuration for migrate to FSP Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
21 lines
396 B
Text
21 lines
396 B
Text
/*
|
|
* 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)>;
|
|
};
|
|
};
|
|
};
|