59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
|
/*
|
||
|
* Copyright (c) 2022 Nordic Semiconductor
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
&pinctrl {
|
||
|
i2c0_default: i2c0_default {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(TWIM_SDA, 0, 0)>,
|
||
|
<NRF_PSEL(TWIM_SCL, 0, 1)>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
i2c0_sleep: i2c0_sleep {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(TWIM_SDA, 0, 0)>,
|
||
|
<NRF_PSEL(TWIM_SCL, 0, 1)>;
|
||
|
low-power-enable;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
spi1_default: spi1_default {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(SPIM_SCK, 0, 25)>,
|
||
|
<NRF_PSEL(SPIM_MOSI, 0, 24)>,
|
||
|
<NRF_PSEL(SPIM_MISO, 0, 23)>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
spi1_sleep: spi1_sleep {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(SPIM_SCK, 0, 25)>,
|
||
|
<NRF_PSEL(SPIM_MOSI, 0, 24)>,
|
||
|
<NRF_PSEL(SPIM_MISO, 0, 23)>;
|
||
|
low-power-enable;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
uart0_default: uart0_default {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(UART_TX, 0, 9)>,
|
||
|
<NRF_PSEL(UART_RX, 0, 11)>,
|
||
|
<NRF_PSEL(UART_RTS, 0, 8)>,
|
||
|
<NRF_PSEL(UART_CTS, 0, 10)>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
uart0_sleep: uart0_sleep {
|
||
|
group1 {
|
||
|
psels = <NRF_PSEL(UART_TX, 0, 9)>,
|
||
|
<NRF_PSEL(UART_RX, 0, 11)>,
|
||
|
<NRF_PSEL(UART_RTS, 0, 8)>,
|
||
|
<NRF_PSEL(UART_CTS, 0, 10)>;
|
||
|
low-power-enable;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|