mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-13 04:58:09 +00:00
Initial commit.
This commit is contained in:
52
examples/adr_plugins/plugin_skeleton.js
Normal file
52
examples/adr_plugins/plugin_skeleton.js
Normal file
@ -0,0 +1,52 @@
|
||||
// This must return the name of the ADR algorithm.
|
||||
export function name() {
|
||||
return "Example plugin";
|
||||
}
|
||||
|
||||
// This must return the id of the ADR algorithm.
|
||||
export function id() {
|
||||
return "example_id";
|
||||
}
|
||||
|
||||
// This handles the ADR request.
|
||||
//
|
||||
// Input object example:
|
||||
// {
|
||||
// regionName: "eu868",
|
||||
// regionCommonName: "EU868",
|
||||
// devEui: "0102030405060708",
|
||||
// macVersion: "1.0.3",
|
||||
// regParamsRevision: "A",
|
||||
// adr: true,
|
||||
// dr: 1,
|
||||
// txPowerIndex: 0,
|
||||
// nbTrans: 1,
|
||||
// maxTxPowerIndex: 15,
|
||||
// requiredSnrForDr: -17.5,
|
||||
// installationMargin: 10,
|
||||
// minDr: 0,
|
||||
// maxDr: 5,
|
||||
// uplinkHistory: [
|
||||
// {
|
||||
// "fCnt": 10,
|
||||
// "maxSnr": 7.5,
|
||||
// "maxRssi": -110,
|
||||
// "txPowerIndex": 0,
|
||||
// "gatewayCount": 3
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
//
|
||||
// This function must return an object, example:
|
||||
// {
|
||||
// dr: 2,
|
||||
// txPowerIndex: 1,
|
||||
// nbTrans: 1
|
||||
// }
|
||||
export function handle(req) {
|
||||
return {
|
||||
dr: req.dr,
|
||||
txPowerIndex: req.txPowerIndex,
|
||||
nbTrans: req.nbTrans
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user