1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# auto-generated by grc.converter
id: rds_parser
label: RDS Parser
category: '[RDS]'
parameters:
- id: log
label: Log
dtype: bool
default: 'False'
options: ['True', 'False']
option_labels: [Enable, Disable]
- id: debug
label: Debug
dtype: bool
default: 'False'
options: ['True', 'False']
option_labels: [Enable, Disable]
- id: pty_locale
label: PTY Locale
dtype: int
default: '0'
options: ['0', '1']
option_labels: [Europe, North America]
- id: reset
label: Reset
dtype: raw
default: '0'
hide: part
inputs:
- domain: message
id: in
outputs:
- domain: message
id: out
optional: true
templates:
imports: import rds
make: rds.parser(${log}, ${debug}, ${pty_locale})
callbacks:
- 'reset() # ${reset}'
file_format: 1
|