Add spi3_sleep pinctrl node to fix nice!60 builds with both RGB underglow and sleep enabled.
19 lines
360 B
Text
19 lines
360 B
Text
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
&pinctrl {
|
|
spi3_default: spi3_default {
|
|
group1 {
|
|
psels = <NRF_PSEL(SPIM_MOSI, 0, 27)>;
|
|
};
|
|
};
|
|
|
|
spi3_sleep: spi3_sleep {
|
|
group1 {
|
|
psels = <NRF_PSEL(SPIM_MOSI, 0, 27)>;
|
|
low-power-enable;
|
|
};
|
|
};
|
|
};
|