07b642d94f
Update existing shields to conform with new node label naming scheme. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
28 lines
598 B
Plaintext
28 lines
598 B
Plaintext
/*
|
|
* Copyright (c) 2020 Rohit Gujarathi
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,display = &ls0xx_ls013b7dh03;
|
|
};
|
|
};
|
|
|
|
&arduino_spi {
|
|
status = "okay";
|
|
cs-gpios = <&arduino_header 16 GPIO_ACTIVE_HIGH>; /* D10 */
|
|
|
|
ls0xx_ls013b7dh03: ls0xx@0 {
|
|
compatible = "sharp,ls0xx";
|
|
spi-max-frequency = <2000000>;
|
|
reg = <0>;
|
|
width = <128>;
|
|
height = <128>;
|
|
extcomin-gpios = <&arduino_header 14 GPIO_ACTIVE_HIGH>; /* D8 */
|
|
extcomin-frequency = <60>; /* required if extcomin-gpios is defined */
|
|
disp-en-gpios = <&arduino_header 12 GPIO_ACTIVE_HIGH>; /* D6 */
|
|
};
|
|
};
|