This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: *** Poly Packet Forwarder for Lora Gateway *** | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: Version: 2.1.0 | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: *** Lora concentrator HAL library version info *** | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: Version: 3.1.0; Options: native; | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: *** | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: Little endian host | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: found global configuration file global_conf.json, parsing it | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: global_conf.json does contain a JSON object named SX1301_conf, parsing SX1301 parameters | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: lorawan_public 1, clksrc 1 | |
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: Configuring TX LUT with 16 indexes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.Person = function(firstName,lastName) { | |
this.firstName = firstName; | |
this.lastName = lastName; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; js-beautify.el -- beautify some js code | |
(defgroup js-beautify nil | |
"Use jsbeautify to beautify some js" | |
:group 'editing) | |
(defcustom js-beautify-args "--jslint-happy --brace-style=end-expand --keep-array-indentation" | |
"Arguments to pass to jsbeautify script" | |
:type '(string) | |
:group 'js-beautify) |