1/* 2 * Copyright (c) 2023 Chen Xingyu <hi@xingrz.me> 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6#include <freq.h> 7 8&spi2 { 9 cs-gpios = <&gpio0 5 GPIO_ACTIVE_LOW>; 10 11 auxdisplay_0: auxdisplay@0 { 12 reg = <0>; 13 spi-max-frequency = <DT_FREQ_M(1)>; 14 compatible = "ptc,pt6314"; 15 status = "okay"; 16 columns = <20>; 17 rows = <2>; 18 }; 19}; 20