1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-30 14:04:18 -04:00

SoapySDR support: REST API: created structures

This commit is contained in:
f4exb
2018-11-13 23:49:04 +01:00
parent 40deb5dc72
commit 89899a48d3
247 changed files with 4531 additions and 233 deletions
@@ -33,7 +33,7 @@ Gain:
type: integer
Range:
description: An arbitrary range of values
description: An arbitrary range of integer values
properties:
min:
type: integer
@@ -42,6 +42,19 @@ Range:
step:
type: integer
RangeFloat:
description: An arbitrary range of floating point values
properties:
min:
type: number
format: float
max:
type: number
format: float
step:
type: number
format: float
FrequencyRange:
description: An frequency range with 64 bit support for min and max
properties:
@@ -61,3 +74,25 @@ NamedEnum:
type: string
value:
type: integer
ArgInfo:
descripion: Argument information used in SoapySDR
properties:
key:
type: string
valueType:
type: string
enum: [bool, int, float, string]
valueString:
type: string
Complex:
description: A complex number
properties:
real:
type: number
format: float
imag:
type: number
format: float