Skip to content

1.5.0

Compare
Choose a tag to compare
@ofabel ofabel released this 06 Oct 14:08
· 8 commits to master since this release

Added

  • Support for basic file system operations using the io module:
    • Read and write files.
    • Open in text or binary mode.
  • Simple logging module:
    • Log levels according to the Flipper Zero API: trace, debug, info, warn, error.
    • Only the root logger is supported, so no getLogger function.
    • Logs directly to the log output, so no output in the REPL.
  • Redirect output of print statements:
    • To stdout when a script is invoked by py command from the CLI.
    • To the log buffer, if a script is invoked from the UI.
  • UART support for the flipperzero module.

Changed

  • The py command waits until the script terminates.

Fixed

  • #3: Proper CR and LF handling in the REPL.