mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 23:45:00 -04:00
LoRa modulator: REST API (1)
This commit is contained in:
@@ -4389,6 +4389,21 @@ margin-bottom: 20px;
|
||||
},
|
||||
"channelSampleRate" : {
|
||||
"type" : "integer"
|
||||
},
|
||||
"symbolTimeMs" : {
|
||||
"type" : "number",
|
||||
"format" : "float",
|
||||
"description" : "symbol duration (ms)"
|
||||
},
|
||||
"payloadTimeMs" : {
|
||||
"type" : "number",
|
||||
"format" : "float",
|
||||
"description" : "payload duration (ms)"
|
||||
},
|
||||
"totalTimeMs" : {
|
||||
"type" : "number",
|
||||
"format" : "float",
|
||||
"description" : "total message duration inc. preamble and SFD (ms)"
|
||||
}
|
||||
},
|
||||
"description" : "LoRaMod"
|
||||
@@ -4406,15 +4421,108 @@ margin-bottom: 20px;
|
||||
"type" : "integer"
|
||||
},
|
||||
"deBits" : {
|
||||
"type" : "integer"
|
||||
"type" : "integer",
|
||||
"description" : "Low data rate optmize (DE) bits i.e. nb of FFT bins per effective symbol"
|
||||
},
|
||||
"message" : {
|
||||
"type" : "string"
|
||||
"preambleChirps" : {
|
||||
"type" : "integer",
|
||||
"description" : "Number of preamble chirps"
|
||||
},
|
||||
"quietMillis" : {
|
||||
"type" : "integer",
|
||||
"description" : "Number of milliseconds to pause between transmissions"
|
||||
},
|
||||
"syncWord" : {
|
||||
"type" : "integer",
|
||||
"description" : "2 byte (0..65535) synchronization syncWord"
|
||||
},
|
||||
"channelMute" : {
|
||||
"type" : "integer",
|
||||
"description" : "boolean"
|
||||
},
|
||||
"codingScheme" : {
|
||||
"type" : "integer",
|
||||
"description" : "message encoding scheme (LoRaModSettings::CodingScheme):\n * 0 - LoRa\n * 1 - Plain ASCII (7 bit)\n * 2 - Teletype (5 bit Baudot) a.k.a TTY\n"
|
||||
},
|
||||
"nbParityBits" : {
|
||||
"type" : "integer",
|
||||
"description" : "Hamming FEC parity bits (LoRa)"
|
||||
},
|
||||
"hasCRC" : {
|
||||
"type" : "integer",
|
||||
"description" : "Payload has CRC (LoRa)"
|
||||
},
|
||||
"hasHeader" : {
|
||||
"type" : "integer",
|
||||
"description" : "Header present before actual payload (LoRa)"
|
||||
},
|
||||
"myCall" : {
|
||||
"type" : "string",
|
||||
"description" : "own callsign placeholder (QSO mode)"
|
||||
},
|
||||
"urCall" : {
|
||||
"type" : "string",
|
||||
"description" : "other party callsign placeholder (QSO mode)"
|
||||
},
|
||||
"myLoc" : {
|
||||
"type" : "string",
|
||||
"description" : "own QRA locator (QSO mode)"
|
||||
},
|
||||
"myRpt" : {
|
||||
"type" : "string",
|
||||
"description" : "report sent to other party (QSO mode)"
|
||||
},
|
||||
"messageType" : {
|
||||
"type" : "integer",
|
||||
"description" : "type of message to send (LoRaModSettings::MessageType):\n * 0 - No message i.e no output. Use this as a transition to resend the same message.\n * 1 - Beacon. Sends message specified in beaconMessage\n * 2 - CQ call. Sends message specified in cqMessage\n * 3 - Reply to CQ call. Sends message specified in replyMessage\n * 4 - Report to callee. Sends message specified in reportMessage\n * 5 - Report to caller. Sends message specified in replyReportMessage\n * 6 - RRR to callee. Sends message specified in rrrMessage\n * 7 - 73 to caller. Sends message specified in message73\n * 8 - Random message with callsigns. Sends message specified in qsoTextMessage\n * 9 - Plain text. Sends message specified in textMessage\n * 10 - Binary payload. Sends bytes specified in bytesMessage\n"
|
||||
},
|
||||
"beaconMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "text message to be sent (repeatedly) as a beaconMessage"
|
||||
},
|
||||
"cqMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "general call message (QSO mode)"
|
||||
},
|
||||
"replyMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "reply to caller message (QSO mode)"
|
||||
},
|
||||
"reportMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "report to callee message (QSO mode)"
|
||||
},
|
||||
"replyReportMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "report back to caller message (QSO mode)"
|
||||
},
|
||||
"rrrMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "caller RRR message (QSO mode)"
|
||||
},
|
||||
"message73" : {
|
||||
"type" : "string",
|
||||
"description" : "73 message back to caller to close QSO (QSO mode)"
|
||||
},
|
||||
"qsoTextMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "QSO random message exchange (QSO mode)"
|
||||
},
|
||||
"textMessage" : {
|
||||
"type" : "string",
|
||||
"description" : "freeform text message"
|
||||
},
|
||||
"bytesMessage" : {
|
||||
"type" : "array",
|
||||
"description" : "message to send as an array of hex string represented bytes (00..FF)",
|
||||
"items" : {
|
||||
"type" : "string"
|
||||
}
|
||||
},
|
||||
"messageRepeat" : {
|
||||
"type" : "integer",
|
||||
"description" : "number of repetitions of the same message (0 for infinite)"
|
||||
},
|
||||
"rgbColor" : {
|
||||
"type" : "integer"
|
||||
},
|
||||
@@ -32322,7 +32430,7 @@ except ApiException as e:
|
||||
</div>
|
||||
<div id="generator">
|
||||
<div class="content">
|
||||
Generated 2020-02-08T20:41:49.295+01:00
|
||||
Generated 2020-02-22T07:44:51.167+01:00
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user