Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
248 changes: 129 additions & 119 deletions go/gw/gw.pb.go

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/gw/gw_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ export class UplinkRXInfo extends jspb.Message {
getCrcStatus(): CRCStatusMap[keyof CRCStatusMap];
setCrcStatus(value: CRCStatusMap[keyof CRCStatusMap]): void;

getFrequencyOffset(): number;
setFrequencyOffset(value: number): void;

getFineTimestampCase(): UplinkRXInfo.FineTimestampCase;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): UplinkRXInfo.AsObject;
Expand Down Expand Up @@ -320,6 +323,7 @@ export namespace UplinkRXInfo {
context: Uint8Array | string,
uplinkId: Uint8Array | string,
crcStatus: CRCStatusMap[keyof CRCStatusMap],
frequencyOffset: number,
}

export enum FineTimestampCase {
Expand Down
29 changes: 28 additions & 1 deletion js/gw/gw_pb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions protobuf/gw/gw.proto
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ message UplinkRXInfo {

// CRC status.
CRCStatus crc_status = 17 [json_name = "crcStatus"];

// Frequency offset from the centre frequency
int32 frequency_offset = 18 [json_name = "foff"];

}

message DownlinkTXInfo {
Expand Down
91 changes: 49 additions & 42 deletions python/src/chirpstack_api/gw/gw_pb2.py

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions rust/proto/chirpstack-api/gw/gw.proto
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ message UplinkRXInfo {

// CRC status.
CRCStatus crc_status = 17 [json_name = "crcStatus"];

// Frequency offset from the centre frequency
int32 frequency_offset = 18 [json_name = "foff"];

}

message DownlinkTXInfo {
Expand Down
5 changes: 5 additions & 0 deletions swagger/as/external/api/device.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1126,6 +1126,11 @@
"crcStatus": {
"$ref": "#/definitions/gwCRCStatus",
"description": "CRC status."
},
"foff": {
"type": "integer",
"format": "int32",
"title": "Frequency offset from the centre frequency"
}
}
},
Expand Down
5 changes: 5 additions & 0 deletions swagger/as/external/api/gateway.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,11 @@
"crcStatus": {
"$ref": "#/definitions/gwCRCStatus",
"description": "CRC status."
},
"foff": {
"type": "integer",
"format": "int32",
"title": "Frequency offset from the centre frequency"
}
}
},
Expand Down