mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
36 lines
882 B
YAML
36 lines
882 B
YAML
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
---
|
|
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
realtime:
|
|
type: boolean
|
|
default: true
|
|
description: Pace the generation of samples by the `rate` setting.
|
|
|
|
limit:
|
|
type: integer
|
|
default: 0
|
|
description: Stop the node after the provided number of samples.
|
|
|
|
rate:
|
|
type: number
|
|
description: The rate at which the samples are generated if operating in real-time mode (See `realtime` option).
|
|
|
|
monitor_missed:
|
|
type: boolean
|
|
default: false
|
|
description: Raise warnings if the signal generator fails to operate in real-time due to missed deadlines.
|
|
|
|
in:
|
|
type: object
|
|
required:
|
|
- signals
|
|
properties:
|
|
signals:
|
|
type: array
|
|
items:
|
|
$ref: ./signals/generator.yaml
|
|
|
|
- $ref: ../node.yaml
|