minimal version

This commit is contained in:
2022-07-30 10:44:45 +02:00
parent 2e52d8901b
commit 8fc83e0ba6
5 changed files with 52836 additions and 16 deletions

17
.gitignore vendored
View File

@@ -1,16 +1 @@
# ---> Rust
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
/target

39
Cargo.lock generated Normal file
View File

@@ -0,0 +1,39 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "gcode"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5125264a3fbfa54f30f79428f4e69d74ad279f554ba90829189517f407f41dbc"
dependencies = [
"arrayvec",
"cfg-if",
"libm",
]
[[package]]
name = "gcode_interpreter"
version = "0.1.0"
dependencies = [
"gcode",
]
[[package]]
name = "libm"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da83a57f3f5ba3680950aa3cbc806fc297bc0b289d42e8942ed528ace71b8145"

9
Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "gcode_interpreter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gcode = "0.6.1"

52765
calibrationCube.gcode Normal file

File diff suppressed because it is too large Load Diff

22
src/main.rs Normal file
View File

@@ -0,0 +1,22 @@
use std::env;
use std::fs;
//use gcode::Mnemonic;
const FILENAME:&str = "./calibrationCube.gcode";
fn main() {
println!("Gcode in the file : {}",FILENAME);
let contents = fs::read_to_string(FILENAME).expect("Could not read the file");
//we use the gcode crate rather than just a string parser because it negates comments and not correct lines
let got: Vec<_> = gcode::parse(contents.as_str()).collect();
let mut line_counter:i32 = 0;
let mut command = "";
for line in &got {
line_counter += 1;
//command =
println!("{}: {}",line_counter,line);
}
}