#embedded-linux #lcd #linux #driver #hd44780

charlcd

Rust library for charlcd.c Linux driver (HD44780 et al.)

6 releases (1 stable)

1.0.0 Mar 11, 2024
0.1.4 Jun 14, 2023
0.1.3 Jul 13, 2020
0.1.2 Mar 27, 2020

#160 in Embedded development

Download history 5/week @ 2024-02-20 3/week @ 2024-02-27 91/week @ 2024-03-05 61/week @ 2024-03-12 4/week @ 2024-03-19

160 downloads per month

Apache-2.0

40KB
354 lines

charlcd

Latest version Documentation License

A rust crate to interact with the mainline Linux charlcd.c driver.

Or, said boldly: a crate to correctly interact with HD44780 LCD screens on embedded Linux devices.

Demo

Photo of a test on HD44780 20x4 screen

The use of these kinds of photographies is used all over the documentation to explain the before and after of every available function. Be sure to check them all!

Rationale

A lot of developers are relying on userspace libraries to interact with the very popular HD44780 LCD screens, but these implementations are lacking proper abstractions and usually all reimplement the same communication protocol to interact with the screen over and over.

This approach seems just wrong if you consider what the Linux kernel can provide in comparison. Indeed, it is the role of device drivers to properly abstract the access to the hardware from userspace perspective. For this, the Linux kernel uses an abstraction mechanism to declare the hardware: the device-tree.

The device-tree nodes for a screen behind an I2C GPIO expander would look like the following:

&i2c0 {
    status = "okay";

    pcf8574a: i2c0@3f {
        compatible = "nxp,pcf8574a";
        reg = <0x3f>;
        gpio-controller;
        #gpio-cells = <2>;
    };
};

auxdisplay: auxdisplay {
    compatible = "hit,hd44780";

    data-gpios = <&pcf8574a 4 GPIO_ACTIVE_HIGH>,
                 <&pcf8574a 5 GPIO_ACTIVE_HIGH>,
                 <&pcf8574a 6 GPIO_ACTIVE_HIGH>,
                 <&pcf8574a 7 GPIO_ACTIVE_HIGH>;
    rs-gpios = <&pcf8574a 0 GPIO_ACTIVE_HIGH>;
    rw-gpios = <&pcf8574a 1 GPIO_ACTIVE_HIGH>;
    enable-gpios = <&pcf8574a 2 GPIO_ACTIVE_HIGH>;
    backlight-gpios = <&pcf8574a 3 GPIO_ACTIVE_LOW>;

    display-height-chars = <2>;
    display-width-chars = <16>;
};

Once the device-tree is correctly configured, the charlcd driver will create a /dev/lcd character device.

The role of this library is to provide an abstraction over this character device entry, while letting the kernel driver implement the communication with the screen — instead of going from scratch and using ioctl over /dev/i2c-* like many other libraries do.

Known bugs

The charlcd driver is currently not able to report screen size to userspace. This is mitigated in the library by having a look at the device-tree entries directly.

Going further

For more information about this and a demo on real hardware, see this blog article.

License

Apache v2.

Dependencies

~120KB