mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
30 lines
668 B
YAML
30 lines
668 B
YAML
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
---
|
|
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
bits:
|
|
type: integer
|
|
default: 32
|
|
description: Number of bits per signal. Must be one of 8, 16, 32, 64 or 128.
|
|
|
|
endianess:
|
|
type: string
|
|
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
|
|
|
|
- $ref: ../format.yaml
|