[package]
name = "printhor-hwi_mks_robin_nano"
version = "0.0.3"
edition = "2021"
authors = ["Carlos Barrales Ruiz <cbruiz@gmail.com>"]
description = "Printhor Hardware Abstraction for MKS Robin Nano v3.1 board"
readme = "README.md"
repository = "https://github.com/cbruiz/printhor"
keywords = ["hardware", "abstraction"]
license = "MIT"
documentation = "https://docs.rs/prinThor"
homepage = "https://github.com/cbruiz/printhor"
[lib]
[features]
with-usbserial = ["embassy-usb"]
with-printjob = []
with-uart-port-1 = []
with-spi = ["embedded-hal"]
with-hotend = ["embedded-hal"]
with-hotbed = ["embedded-hal"]
with-motion = []
with-probe = ["embedded-hal"]
with-endstops = []
with-sdcard = []
with-fan-layer-fan1 = ["embedded-hal"]
with-laser = ["embedded-hal"]
with-defmt = ["printhor-hwa-common/with-defmt"]
with-trinamic = []
sdcard-uses-spi = []
ili9341_parallel = []
ili9341_spi = ["with-spi"]
[dependencies]
defmt = {version = "0.3", default-features = false}
cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] }
alloc-cortex-m = { version = "0.4.4", default-features = false, features = []}
embassy-stm32 = { version = "0.1.0", default-features = false, features = ["stm32f407ve", "defmt", "rt", "memory-x", "exti", "unstable-pac", "time-driver-tim4"] }
embassy-executor = { version = "0.5.0", default-features = false, features = ["executor-interrupt", "executor-thread", "arch-cortex-m", "task-arena-size-16384"] }
embassy-sync = { version = "0.5.0", features = [] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-futures = { version = "0.1.1", features = [] }
embassy-usb = { version = "0.1.0", features = [], optional = true }
printhor-hwa-common = { version = "0.0.3"}
async-gcode = {version = "0", default-features = false, features=["parse-trailing-comment", "optional-value", "string-value"] }
futures = { version = "0.3.30", default-features = false, features = [] }
embedded-hal = { version = "1.0.0", default-features = false, optional = true }
embedded-hal-02 = { package = "embedded-hal", version = "0.2.7", features = ["unproven", ] }
[patch.crates-io]
embassy-usb = { git = "https://github.com/cbruiz/embassy.git", branch="main" }