~ruther/stm32h747i-disco-usb-image-viewer

ref: 188e7fcf29e51d2f2727530930cde739b6300028 stm32h747i-disco-usb-image-viewer/linux_app/src/main.rs -rw-r--r-- 1.6 KiB
188e7fcf — Rutherther docs: add README with information about the project 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use futures::stream::StreamExt;
use image::ImageReader;
use core::any::Any;
use std::{env, io, str};
use tokio_util::codec::{Decoder, Encoder};
use tokio::time::{sleep, Duration};

use image::imageops::FilterType;

use tokio::io::AsyncWriteExt;

use bytes::BytesMut;
use tokio_serial::SerialPortBuilderExt;


const DEFAULT_TTY: &str = "/dev/ttyACM1";

#[tokio::main]
async fn main() -> tokio_serial::Result<()> {
    let mut args = env::args();
    let path = args.nth(1).unwrap();
    let mut img = ImageReader::open(&path).unwrap().decode().unwrap();

    let tty_path = args.nth(2).unwrap_or_else(|| DEFAULT_TTY.into());

    let mut port = tokio_serial::new(tty_path, 115200).open_native_async()?;

    const WIDTH: usize = 800;
    const HEIGHT: usize = 480;
    const TOTAL_BYTES: usize = WIDTH * HEIGHT * 3;
    const MAX_WRITE_LEN: usize = 115_200;

    if (img.width() < img.height()) {
        img = img.rotate90();
    }

    let ratio = WIDTH as f64 / img.width() as f64;
    let height = (ratio * img.height() as f64) as u32;

    let rgb_img = img.resize_exact(WIDTH.try_into().unwrap(), height, FilterType::Nearest).into_rgb8();
    let mut raw_img = rgb_img.into_raw();
    raw_img.resize(TOTAL_BYTES, 0x00);

    port.write(&[ 'i' as u8 ] ).await?;
    port.flush().await?;

    let mut total: usize = raw_img.len();
    let mut pos: usize = 0;

    while (total > 0) {
        let mut size = MAX_WRITE_LEN;

        if (size > total) {
            size = total;
        }

        port.write(&raw_img[pos..(pos+size)]).await?;
        port.flush().await?;

        total -= size;
        pos += size;
    }

    Ok(())
}
Do not follow this link