mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
37 lines
793 B
Plaintext
37 lines
793 B
Plaintext
// Overlay for SSD1306 128x64 and 128x32 OLED displays
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&i2c1>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
ssd1306: oled@3c{
|
|
compatible = "solomon,ssd1306fb-i2c";
|
|
reg = <0x3c>;
|
|
solomon,width = <128>;
|
|
solomon,height = <64>;
|
|
solomon,page-offset = <0>;
|
|
};
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
address = <&ssd1306>,"reg:0";
|
|
width = <&ssd1306>,"solomon,width:0";
|
|
height = <&ssd1306>,"solomon,height:0";
|
|
offset = <&ssd1306>,"solomon,page-offset:0";
|
|
normal = <&ssd1306>,"solomon,segment-no-remap?";
|
|
sequential = <&ssd1306>,"solomon,com-seq?";
|
|
remapped = <&ssd1306>,"solomon,com-lrremap?";
|
|
inverted = <&ssd1306>,"solomon,com-invdir?";
|
|
};
|
|
};
|