Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.32 KB

CHANGELOG.md

File metadata and controls

32 lines (26 loc) · 1.32 KB

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

  • Bring in API changes from cortex-m-semihosting, including:
    • Addition of the hprint, hprintln, heprint, heprintln, and dbg macros.
      • hprint and heprintln print to host stdout without and with a newline, respectively.
      • heprint and heprintln do the same, except to host stderr.
      • dbg works exactly like std::dbg.
    • HStdout and HStderr have been combined into HostStream.
    • inline-asm feature removed, switched to stabilized inline asm and MSRV bumped to 1.59.0
  • Clean up documentation, removing unnecessary references to cortex-m-semihosting and improving clarity.
  • Added GitHub Actions CI
  • Add features to select the privilege level the semihosting operations will be started from

v0.0.1 - 2018-02-27

  • Initial release