2021-11-18 12:10:36 +01:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
2022-03-24 16:56:53 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2022-01-10 17:52:36 +01:00
|
|
|
---
|
2021-11-18 12:10:36 +01:00
|
|
|
allOf:
|
|
|
|
- type: object
|
|
|
|
properties:
|
2022-03-24 16:56:53 +01:00
|
|
|
bits:
|
|
|
|
type: integer
|
|
|
|
default: 32
|
|
|
|
description: Number of bits per signal. Must be one of 8, 16, 32, 64 or 128.
|
|
|
|
|
|
|
|
endianess:
|
2021-11-18 12:10:36 +01:00
|
|
|
type: string
|
2022-03-24 16:56:53 +01:00
|
|
|
description: The endianess of the data.
|
|
|
|
default: little
|
|
|
|
enum:
|
|
|
|
- big
|
|
|
|
- little
|
|
|
|
|
|
|
|
fake:
|
|
|
|
type: boolean
|
|
|
|
description: |
|
|
|
|
Send and interpret the first three signals of each sample as the following header fields:
|
|
|
|
- sequence number
|
|
|
|
- timestamp seconds
|
|
|
|
- timestamp nano-seconds
|
|
|
|
|
|
|
|
default: false
|
|
|
|
|
2021-12-06 09:25:55 +01:00
|
|
|
- $ref: ../format.yaml
|