[package] name = "printhor-hwi_skr_mini_e3" version = "0.0.3" edition = "2021" authors = ["Carlos Barrales Ruiz "] description = "Printhor Hardware Abstraction for SK3 Mini E3 V2 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-defmt = ["printhor-hwa-common/defmt"] # Hardware device 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-fan0 = ["embedded-hal"] with-laser = ["embedded-hal"] with-trinamic = [] sdcard-uses-spi = [] ili9341_parallel = [] ili9341_spi = ["with-spi"] [dependencies] defmt = {version = "0.3", default-features = false } printhor-hwa-common = { version = "0.0.3"} embassy-stm32 = { version = "0.1.0", default-features = false, features = ["defmt", "stm32g0b1re", "rt", "memory-x", "unstable-pac", "time-driver-tim4"] } embassy-executor = { version = "0.5.0", default-features = false, features = ["defmt", "executor-interrupt", "executor-thread", "arch-cortex-m"] } embassy-sync = { version = "0.5.0", features = ["defmt"] } embassy-time = { version = "0.3.0", features = ["defmt", "tick-hz-100_000"] } embassy-futures = { version = "0.1.1", features = [] } embassy-usb = { version = "0.1.0", features = [], optional = true } cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] } alloc-cortex-m = { version = "0.4.4", 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"] } async-gcode = {version = "0", default-features = false, features=["parse-trailing-comment", "optional-value", "string-value"] } futures = { version = "0.3.30", default-features = false, features = [] }