Code Monkey home page Code Monkey logo

scpi-rs's Introduction

scpi 0.3.0

Quickstart Fuzzing codecov

This crate attempts to implement the IEE488.2 / SCPI protocol commonly used by measurement instruments and tools.

It does not require the std library (ie it's no_std compatible) or a system allocator (useful for embedded).

API is unstable (as of 0.2.*)

Scope

The crate does not support any transport layer, it only reads ascii-strings ([u8]) and writes ascii responses.

It does not implement any higher level functions/error handling other than SCPI parsing and mandated registers/commands(optional).

Using this crate

Add scpi to your dependencies:

[dependencies]
scpi = "0.x"

The API is still work in progress so the minor version should be specified.

Features

These features are by default turned OFF.

  • extended-error - Allows extended error messages of the form <error code>, "error message;extended message". Requires more data and program memory.
  • arbitrary-utf8-string - Allows UTF8 arbitrary data block, #s"Detta är en utf8 sträng med roliga bokstäver. Checked by the parser and emits a InvalidBlockData if the UTF8 data is malformed. This is not a part of the SCPI standard

These features are by default turned ON.

  • build-info - Includes build info in the library and creates a LIBrary[:VERsion]? command macro to query it.
  • unit-* - Creates conversion from a argument [and suffix] into corresponding uom unit. Disable the ones you don't need to save space and skip uom.

Getting started

Look at the example for how to create a tree and run commands.

Character coding

SCPI is strictly ASCII and will throw a error InvalidCharacter if any non-ascii (>127) characters are encountered (Exception: Arbitrary data blocks). This library uses ASCII [u8] and not Rust UTF-8 str, use to/from_bytes() to convert in between them.

String/arbitrary-block data may be converted to str with the try_into trait which will throw a SCPI error if the data is not valid UTF8.

Error handling

The Context::run(...) function aborts execution and returns on the first error it encounters. Execution may be resumed where it aborted by calling exec again with the same tokenizer.

User commands will often use functions which may return an error, these should mostly be propagated down to the parser by rusts ? operator.

The documentation often uses the term 'throw' for returning an error, this should not be confused with exceptions etc which are not used.

Limitations and differences

These are the current limitations and differences from SCPI-99 specs (that I can remember) that needs to be addressed before version 1.0.0. They are listed in the rough order of which I care to fix them.

  • Response data formatting, currently each command is responsible for formatting their response. Done
  • Better command data operators with automatic error checking. TryInto and TrayFrom traits are implemented for Integer, float and string types
  • Automatic suffix/special number handling. Supports all SCPI-99 simple suffixes and decibel
  • Provide working implementation of all IEEE 488.2 and SCPI-99 mandated commands. All IEEE488.2/SCPI-99 mandated commands have default implementations.
  • Quotation marks inside string data, the parser cannot handle escaping ' and " inside their respective block (eg "bla ""quoted"" bla"). The parser properly handle '' and "" but it's up to user to handle the duplicate
  • Expression data, not handled at all. Supports non-nested numeric-/channel-list expressions
  • Provide a reference instrument class implementation
  • Error codes returned by the parser does not follow SCPI-99 accurately (because there's a fucking lot of them!).
  • Working test suite. Better than nothing I suppose

Nice to have

Not necessary for a 1.0.0 version but would be nice to have in no particular order.

  • Double-precision float (f64) support.

Contribution

Contributions are welcome because I don't know what the fuck I'm doing.

Project organisation:

  • example - A simple example application used for testing
  • scpi - Main library
  • scpi_derive - Internal macro support library, used by scpi to generate error messages and suffixes (enter at own risk)

License

This project is licensed under the MIT License, see LICENSE.txt.

scpi-rs's People

Contributors

atmelfan avatar occheung avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.