diff --git a/schemas/vc00_veto_configuration.fbs b/schemas/vc00_veto_configuration.fbs new file mode 100644 index 0000000..9650acc --- /dev/null +++ b/schemas/vc00_veto_configuration.fbs @@ -0,0 +1,12 @@ +// Schema for showing the current veto configuration. +// This contains essentially a bitwise OR of soft and hard vetoes. + +file_identifier "vc00"; + +table Vetoes { + timestamp: long; // Nanoseconds since UNIX epoch + vetoes: u32 (required); // A bit mask of the configured vetoes. For the individual bits see + // https://isiscomputinggroup.github.io/ibex_developers_manual/specific_iocs/datastreaming/Datastreaming-vetos +} + +root_type Vetoes;