4 stable releases
1.1.0 | Sep 21, 2024 |
---|---|
1.0.2 | Feb 21, 2024 |
#104 in Video
208 downloads per month
30KB
529 lines
JVS-Packets
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.