for beeper

This commit is contained in:
w4ilun 2023-04-20 09:54:41 -04:00 committed by GitHub
parent 519566d30f
commit 4b10177d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 64 additions and 3 deletions

View File

@ -27,9 +27,9 @@ char vcomByte = 0b01000000;
char clearByte = 0b00100000; char clearByte = 0b00100000;
char paddingByte = 0b00000000; char paddingByte = 0b00000000;
char DISP = 24; char DISP = 22;
char SCS = 23; char SCS = 8;
char VCOM = 25; char VCOM = 23;
int lcdWidth = LCDWIDTH; int lcdWidth = LCDWIDTH;
int lcdHeight = 240; int lcdHeight = 240;

61
sharp.dts.txt Normal file
View File

@ -0,0 +1,61 @@
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2835", "brcm,bcm2708", "brcm,bcm2709";
fragment@0 {
target = <&spi0>;
__overlay__ {
status = "okay";
spidev@0{
status = "disabled";
};
spidev@1{
status = "disabled";
};
};
};
fragment@1 {
target = <&spi0_pins>;
__overlay__ {
brcm,pins = <0x0a 0x0b>; /* skipping bcm9 MISO */
};
};
fragment@2 {
target = <&gpio>;
__overlay__ {
sharp_pins: sharp_pins {
brcm,pins = <23 22>;
/* brcm,pins = <9 23>; */ /* <- older revision */
brcm,function = <1 1>; /* out */
};
};
};
fragment@3 {
target = <&spi0>;
__overlay__ {
/* needed to avoid dtc warning */
#address-cells = <1>;
#size-cells = <0>;
sharp: sharp@0{
compatible = "sharp";
reg = <0>;
pinctrl-names = "default";
pinctrl-0 = <&sharp_pins>;
spi-cs-high = <1>;
spi-max-frequency = <2000000>;
buswidth = <8>;
debug = <0>;
};
};
};
};