mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-06 16:05:13 -04:00
Spactrum: allow arbitrary FPS (API) or in a range of FPS (GUI) with possible no limit. Implements #772
This commit is contained in:
@@ -4,15 +4,15 @@ APRSSettings:
|
||||
igateServer:
|
||||
type: string
|
||||
igatePort:
|
||||
type: integer
|
||||
type: integer
|
||||
igateCallsign:
|
||||
type: string
|
||||
igatePasscode:
|
||||
type: string
|
||||
igateFilter:
|
||||
type: string
|
||||
type: string
|
||||
igateEnabled:
|
||||
type: integer
|
||||
type: integer
|
||||
title:
|
||||
type: string
|
||||
rgbColor:
|
||||
|
||||
@@ -14,6 +14,9 @@ GLSpectrum:
|
||||
powerRange:
|
||||
type: number
|
||||
format: float
|
||||
fpsPeriodMs:
|
||||
type: integer
|
||||
description: FPS capping period in milliseconds. 0 for no limit.
|
||||
displayWaterfall:
|
||||
description: boolean
|
||||
type: integer
|
||||
|
||||
@@ -34,16 +34,18 @@ MapItem:
|
||||
properties:
|
||||
name:
|
||||
description: "A name for the item"
|
||||
type: string
|
||||
type: string
|
||||
image:
|
||||
description: "Filename or URL of image to draw on the map"
|
||||
type: string
|
||||
imageRotation:
|
||||
description: "Angle to rotate the image by"
|
||||
type: integer
|
||||
imageFixedSize:
|
||||
description: "Keep the image the same size, regardless of map zoom level (1 for yes, 0 for no)"
|
||||
default: 0
|
||||
imageMinZoom:
|
||||
description: "Minimim zoom value"
|
||||
type: integer
|
||||
default: 11
|
||||
text:
|
||||
descrption: "Text to draw on the map when item is selected"
|
||||
type: string
|
||||
@@ -55,3 +57,7 @@ MapItem:
|
||||
description: "Longitude in decimal degrees, positive to the east"
|
||||
type: number
|
||||
format: float
|
||||
altitude:
|
||||
description: "Altitude / height above sea level in metres"
|
||||
type: number
|
||||
format: float
|
||||
|
||||
@@ -9,25 +9,25 @@ StarTrackerSettings:
|
||||
type: string
|
||||
dec:
|
||||
description: "Declination of custom target"
|
||||
type: string
|
||||
latitude:
|
||||
type: string
|
||||
latitude:
|
||||
description: "Latitude in decimal degrees (North positive) of observation/antenna location"
|
||||
type: number
|
||||
format: float
|
||||
longitude:
|
||||
description: "Longitude in decimal degrees (East positive) of observation/antenna location"
|
||||
type: number
|
||||
type: number
|
||||
format: float
|
||||
dateTime:
|
||||
description: "Date and time of observation. ISO 8601 extended format: yyyy-MM-ddTHH:mm:ss with Z suffix for UTC. Empty string for current time."
|
||||
description: "Date and time of observation. ISO 8601 extended format: yyyy-MM-ddTHH:mm:ss with Z suffix for UTC. Empty string for current time."
|
||||
type: string
|
||||
refraction:
|
||||
refraction:
|
||||
description: "Atmospheric refraction correction (None or Saemundsson)"
|
||||
type: string
|
||||
pressure:
|
||||
description: "Air pressure in millibars, for refraction"
|
||||
type: number
|
||||
format: float
|
||||
format: float
|
||||
temperature:
|
||||
description: "Air temperature in Celsuis, for refraction"
|
||||
type: number
|
||||
@@ -47,17 +47,17 @@ StarTrackerSettings:
|
||||
frequency:
|
||||
description: "Frequency of radio waves being observed in MHz"
|
||||
type: number
|
||||
format: float
|
||||
format: float
|
||||
stellariumServerEnabled:
|
||||
descrption: "Enable Stellarium server (1 for yes, 0 for no)"
|
||||
type: integer
|
||||
type: integer
|
||||
stellariumPort:
|
||||
description: "IP port number for Stellarium server to listen on (Default is 10001)."
|
||||
type: integer
|
||||
updatePeriod:
|
||||
description: "Time in seconds between each calculation of the target's position"
|
||||
type: number
|
||||
format: float
|
||||
format: float
|
||||
epoch:
|
||||
description: "Epoch for RA and Dec (J2000 or JNOW)"
|
||||
type: string
|
||||
@@ -69,7 +69,7 @@ StarTrackerSettings:
|
||||
type: integer
|
||||
drawStarOnMap:
|
||||
description: "Draw the overhead position of the target Star on the Map (1 for yes, 0 for no)"
|
||||
type: integer
|
||||
type: integer
|
||||
title:
|
||||
type: string
|
||||
rgbColor:
|
||||
|
||||
Reference in New Issue
Block a user