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.
98 lines
1.7 KiB
98 lines
1.7 KiB
/* |
|
* Copyright (c) 2022 Nordic Semiconductor |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
&pinctrl { |
|
uart0_default: uart0_default { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 6)>, |
|
<NRF_PSEL(UART_RX, 0, 5)>; |
|
}; |
|
}; |
|
|
|
uart0_sleep: uart0_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 6)>, |
|
<NRF_PSEL(UART_RX, 0, 5)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
uart1_default: uart1_default { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 0)>, |
|
<NRF_PSEL(UART_RX, 0, 1)>; |
|
}; |
|
}; |
|
|
|
uart1_sleep: uart1_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 0)>, |
|
<NRF_PSEL(UART_RX, 0, 1)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
uart2_default: uart2_default { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 24)>, |
|
<NRF_PSEL(UART_RX, 0, 23)>; |
|
}; |
|
}; |
|
|
|
uart2_sleep: uart2_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(UART_TX, 0, 24)>, |
|
<NRF_PSEL(UART_RX, 0, 23)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
i2c1_default: i2c1_default { |
|
group1 { |
|
psels = <NRF_PSEL(TWIM_SDA, 0, 26)>, |
|
<NRF_PSEL(TWIM_SCL, 0, 27)>; |
|
}; |
|
}; |
|
|
|
i2c1_sleep: i2c1_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(TWIM_SDA, 0, 26)>, |
|
<NRF_PSEL(TWIM_SCL, 0, 27)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
pwm0_default: pwm0_default { |
|
group1 { |
|
psels = <NRF_PSEL(PWM_OUT0, 0, 3)>; |
|
nordic,invert; |
|
}; |
|
}; |
|
|
|
pwm0_sleep: pwm0_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(PWM_OUT0, 0, 3)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
spi3_default: spi3_default { |
|
group1 { |
|
psels = <NRF_PSEL(SPIM_SCK, 0, 11)>, |
|
<NRF_PSEL(SPIM_MOSI, 0, 9)>, |
|
<NRF_PSEL(SPIM_MISO, 0, 28)>; |
|
}; |
|
}; |
|
|
|
spi3_sleep: spi3_sleep { |
|
group1 { |
|
psels = <NRF_PSEL(SPIM_SCK, 0, 11)>, |
|
<NRF_PSEL(SPIM_MOSI, 0, 9)>, |
|
<NRF_PSEL(SPIM_MISO, 0, 28)>; |
|
low-power-enable; |
|
}; |
|
}; |
|
|
|
};
|
|
|