blob: 5dff2a082c0b6019dafb24082c283ae1fb302ed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// This module is a hack to read additional information in the DT nodes in the
// kernel to retrieve data that is currently not exposed in the charlcd.c
// driver.
use std::fs::File;
use std::io::Result;
use byteorder::{BigEndian, ReadBytesExt};
fn read_u32_node(node_name: &str) -> Result<u32> {
let mut f = File::open(format!(
"/sys/devices/platform/auxdisplay/of_node/{}",
node_name
))?;
Ok(f.read_u32::<BigEndian>()?)
}
pub fn display_height_chars() -> Result<u32> {
read_u32_node("display-height-chars")
}
pub fn display_width_chars() -> Result<u32> {
read_u32_node("display-width-chars")
}
|