Skip to content
Snippets Groups Projects
Select Git revision
  • 3293332d1ae96f31c7f1619b2e9481b6bd71cb37
  • master default protected
  • upstream
  • Programming_of_nuttali
4 results

README.md

Blame
  • Forked from Per Lindgren / e7020e_2021
    Source project has a limited visibility.
    Cargo.toml 1010 B
    [package]
    authors = [
      "Jorge Aparicio <jorge@japaric.io>",
      "Per Lindgren <per.lindgren@ltu.se>",
    ]
    categories = ["concurrency", "embedded", "no-std"]
    description = "Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers"
    documentation = "https://docs.rs/cortex-m-rtfm"
    keywords = ["arm", "cortex-m"]
    license = "MIT OR Apache-2.0"
    name = "cortex-m-rtfm"
    repository = "https://github.com/japaric/cortex-m-rtfm"
    version = "0.3.0"
    
    [dependencies]
    cortex-m = { git = "https://github.com/japaric/cortex-m" }
    untagged-option = "0.1.1"
    # rtfm-core = "0.1.0"
    rtfm-core = { git = "https://github.com/japaric/rtfm-core", branch = "no-static" }
    cortex-m-rtfm-macros = { path = "macros" }
    
    [target.'cfg(target_arch = "x86_64")'.dev-dependencies]
    compiletest_rs = "0.3.3"
    
    [dev-dependencies.cortex-m-rt]
    features = ["abort-on-panic"]
    version = "0.3.3"
    
    [dev-dependencies.stm32f103xx]
    features = ["rt"]
    git = "https://github.com/japaric/stm32f103xx"
    # version = "0.8.0"
    
    [profile.release]
    lto = true