Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 667 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 667 Bytes

FST Communication Protocol

FCP is an interface description language to exchange information independently of language and platform.

Install

$ pip install fcp

Example

version: "3"

use temperature::Temperature;

/*this is a comment*/
enum SensorState {
        Off;
        On;
        Error;
};

struct SensorInformation {
    temperature @ 0: Temperature;
    sensor_state @ 1: SensorState
};

Documentation

See readthedocs.io