Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add comment command.

...

Downlink Types

TypeData (example)Data
config


Code Block
{
  "d": {
    "mFilter": "LOB",
    "listenCron": "0 0/20 * * * *",
    "cmodeDurSec": "600"
  },
  "q": "config"
}

The JSON Format might be subject to change in future releases.

The config values to be updated.


fw


Code Block
{
	"d": { 
		"app": "app-firmware-1.0.0.hex",
	 	"boot": "app-boot-nrf9160-sec-TZ2-1.8.0-mcuboot-slot1.hex"  
	}, 
	"q": "fw"
}

The JSON Format might be subject to change in future releases.

The Firmware files to be downloaded by the device.

  • app: Application firmware file
  • boot: secure bootstrap firmware file (optional)
reboot


Code Block
{
  "q": "reboot"
}

The JSON Format might be subject to change in future releases.


comment


Code Block
{
  "d": "ASCII string to print to log",
  "q": "comment"
}

The JSON Format might be subject to change in future releases.

ASCII String that will be printed to device's Log.
raw


Code Block
{
	format: "ASCII",
	data: "ascii-downlink-payload"
}


Raw downlink data, currently only supported for Tektelek devices.

...