mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
* Use two shield system, nice_view, and nice_view_adapter * Build system fixes for interconnect use.
18 lines
286 B
Plaintext
18 lines
286 B
Plaintext
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
nice_view_spi: &spi0 {
|
|
compatible = "nordic,nrf-spim";
|
|
sck-pin = <17>;
|
|
mosi-pin = <15>;
|
|
miso-pin = <25>;
|
|
cs-gpios = <&pro_micro 1 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
&pro_micro_i2c {
|
|
status = "disabled";
|
|
};
|