#arcade #protocols #packet #structures #methods #jvs #jamma

jvs-packets

A crate that provide structures for JVS protocols

4 stable releases

1.1.0 Sep 21, 2024
1.0.2 Feb 21, 2024

#104 in Video

Download history 2/week @ 2024-06-27 12/week @ 2024-07-04 35/week @ 2024-07-25 5/week @ 2024-08-01 177/week @ 2024-09-19 27/week @ 2024-09-26 4/week @ 2024-10-03

208 downloads per month

MIT/Apache

30KB
529 lines

JVS-Packets   Latest Version Docs Status

A packet structures for JAMMA Video Standart protocols.

This crate provides a wrapper around [u8] array with getter and setter methods for easily writing/reading jvs data.


This crate was initially created for my other project MaiFinaleToDX

Example

use jvs_packets::{jvs::{RequestPacket}, ReadPacket, Packet};

fn main() -> std::io::Result<()> {
    // This is only for example. You can use any structure, that implements std::io::Read. 
    let mut reader = std::io::Cursor::new([0xE0, 0xFF, 0x03, 0x01, 0x02, 0x05]);
    let mut req_packet: RequestPacket = RequestPacket::new();
    reader.read_packet(&mut req_packet)?;
    
    assert_eq!(req_packet.size(), 0x03);
    Ok(())
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in JVS-packets-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps

Features