mirror of
https://github.com/weyne85/DCS-ExportScripts.git
synced 2025-10-29 16:58:18 +00:00
43 lines
1.8 KiB
Lua
43 lines
1.8 KiB
Lua
-- Ikarus and D.A.C. Export Script
|
|
-- Version 1.0.0 BETA
|
|
--
|
|
-- Config File
|
|
--
|
|
-- Copyright by Michael aka McMicha 2014
|
|
-- Contact dcs2arcaze.micha@farbpigmente.org
|
|
|
|
ExportScript.Config = {}
|
|
|
|
-- Ikarus a Glass Cockpit Software
|
|
ExportScript.Config.IkarusExport = true -- false for not use
|
|
ExportScript.Config.IkarusHost = "127.0.0.1" -- IP for Ikarus
|
|
ExportScript.Config.IkarusPort = 1625 -- Port Ikarus (1625)
|
|
ExportScript.Config.IkarusSeparator = ":"
|
|
|
|
-- D.A.C. (DCS Arcaze Connector)
|
|
ExportScript.Config.DACExport = true -- false for not use
|
|
ExportScript.Config.DAC = {}
|
|
-- first hardware
|
|
ExportScript.Config.DAC[1] = {}
|
|
ExportScript.Config.DAC[1].Host = "127.0.0.1" -- IP for hardware 1
|
|
ExportScript.Config.DAC[1].SendPort = 26026 -- Port for hardware 1
|
|
ExportScript.Config.DAC[1].Separator = ":"
|
|
-- secound to n hardware
|
|
--ExportScript.Config.DAC[2] = {}
|
|
--ExportScript.Config.DAC[2].Host = "127.0.0.1" -- IP for hardware 2
|
|
--ExportScript.Config.DAC[2].SendPort = 9092 -- Port for hardware 2
|
|
--ExportScript.Config.DAC[2].Separator = ":"
|
|
|
|
-- D.A.C. can data send
|
|
ExportScript.Config.DACListener = true -- false for not use
|
|
ExportScript.Config.DACListenerPort = 26027 -- Listener Port for D.A.C.
|
|
|
|
-- Other
|
|
ExportScript.Config.ExportInterval = 0.1
|
|
ExportScript.Config.ExportLowTickInterval = 1
|
|
ExportScript.Config.LogPath = lfs.writedir()..[[Logs\Export.log]]
|
|
ExportScript.Config.ExportModulePath = lfs.writedir()..[[Scripts\DCS-ExportScript\ExportsModules\]]
|
|
ExportScript.Config.Debug = false
|
|
ExportScript.Config.FirstNewDataSend = true
|
|
ExportScript.Config.FirstNewDataSendCount = 5
|