mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-19 20:45:18 -05:00
Add spi3_sleep pinctrl node to fix nice!60 builds with both RGB underglow and sleep enabled.
20 lines
360 B
Plaintext
20 lines
360 B
Plaintext
/*
|
|
* 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;
|
|
};
|
|
};
|
|
};
|