Jump to content

Exo7

Members
  • Posts

    90
  • Joined

  • Last visited

Everything posted by Exo7

  1. you can't find the indicator light args in a file, you have to use the lua console to find them.
  2. hi Jojo, at this time, there is nothing exciting to show... there is only the frame and not finished... so you can see some pics here : http://www.hostingpics.net/album/loulou945-269426.html
  3. Sorry, The L GEAR is #417 The AUX GEAR (nose) is #418 The R GEAR is #419 Exo7
  4. Landing lights switch is device #16 arg #450 command : 3450 arg limit : -1, 1 arg step : 1. You can find it in clickabledata.lua file. Exo7
  5. I have build my own M-2000C DCS-BIOS Library with this file and with the lua console (and with the help of Ian ;) )... so i have all indicator lights, switches, pots, and displays working... Exo7
  6. in the REAL MIRAGE 2000C, there is 2 types of red throttle handle, depending of the version and the radio system, there is a Rocker switch on the throttle to choose the radio you want to talk, and a PTT switch (don't know if it's in the rocker switch).
  7. Andre, you have this kind of information in the clickabledata.lua file, located in "Cockpit" folder....
  8. take a look here : http://forums.eagle.ru/showpost.php?p=2626815&postcount=181
  9. Non mais allo quoi !
  10. MAX7219 Display Problem Hi Ian, I have a litlle problem with display on max7219 using LedControl library. i'm using the latest DCS-BIOS Arduino Library (v0.2.1) 1- what i try to do : displaying M2000C UVHF Report Frequency + Selected Preset. 2 - What is the problem : Selected preset is displayed, frequency report is blank (only the DP) this is my function to keep the frequency report string, in my M2000C library: local function getUHFFrequency() local ret = {} local li = list_indication(9) if li == "" then return nil end local m = li:gmatch("-----------------------------------------\n([^\n]+)\n([^\n]*)\n") while true do local name, value = m() if not name then break end ret[name] = value end local freqStatus = ret["text_COM_UHF2"] return freqStatus:sub(0,3) .. freqStatus:sub(5,6) end local function getVHFFrequency() local ret = {} local li = list_indication(9) if li == "" then return nil end local m = li:gmatch("-----------------------------------------\n([^\n]+)\n([^\n]*)\n") while true do local name, value = m() if not name then break end ret[name] = value end local freqStatus = ret["text_COM_UHF1"] return freqStatus:sub(0,3) .. freqStatus:sub(5,6) end this is my calls to function, in M2000C library to : defineString("UHF_FREQUENCY", getUHFFrequency, 5, "UHF Radio", "UHF Frequency Report Display") defineString("VHF_FREQUENCY", getVHFFrequency, 5, "U/VHF Radio", "U/VHF Frequency Report Display") this is my use of defineFloat function to get the Selected preset value : defineFloat("UVHF_PRESET", 445, {0,1}, "U/VHF Radio", "U/VHF PRESET Display") defineFloat("UHF_PRESET", 435, {0,1}, "UHF Radio", "UHF PRESET Display") and this is my sketch : #define DCSBIOS_DEFAULT_SERIAL #include "DcsBios.h" #include <LedControl.h> //on inclus la librairie pour commander le MAX7219 LedControl lc=LedControl(10,11,12,1); void onVhfFrequencyChange(char* newValue) { char hundredths = newValue[0]; char tenths = newValue[1]; char ones = newValue[2]; char tens = newValue[3]; char hundreds = newValue[4]; lc.setChar(0,0,hundredths,false); lc.setChar(0,1,tenths,false); lc.setChar(0,2,ones,true); lc.setChar(0,3,tens,false); lc.setChar(0,4,hundreds,false); } DcsBios::StringBuffer<6> vhfFrequencyBuffer(0x30a0, onVhfFrequencyChange); void onUvhfPresetChange(unsigned int uvhfPresetValue) { unsigned int firstDigit; unsigned int secondDigit; if (uvhfPresetValue>2000 && uvhfPresetValue<5000){firstDigit=0;secondDigit=1;} else if (uvhfPresetValue>5000 && uvhfPresetValue<7000){firstDigit=0;secondDigit=2;} else if (uvhfPresetValue>7000 && uvhfPresetValue<11000){firstDigit=0;secondDigit=3;} else if (uvhfPresetValue>11000 && uvhfPresetValue<14500){firstDigit=0;secondDigit=4;} else if (uvhfPresetValue>14500 && uvhfPresetValue<17500){firstDigit=0;secondDigit=5;} else if (uvhfPresetValue>17500 && uvhfPresetValue<21500){firstDigit=0;secondDigit=6;} else if (uvhfPresetValue>21500 && uvhfPresetValue<24000){firstDigit=0;secondDigit=7;} else if (uvhfPresetValue>24000 && uvhfPresetValue<27500){firstDigit=0;secondDigit=8;} else if (uvhfPresetValue>27500 && uvhfPresetValue<30500){firstDigit=0;secondDigit=9;} else if (uvhfPresetValue>30500 && uvhfPresetValue<34000){firstDigit=1;secondDigit=0;} else if (uvhfPresetValue>34000 && uvhfPresetValue<37500){firstDigit=1;secondDigit=1;} else if (uvhfPresetValue>37500 && uvhfPresetValue<41000){firstDigit=1;secondDigit=2;} else if (uvhfPresetValue>41000 && uvhfPresetValue<44000){firstDigit=1;secondDigit=3;} else if (uvhfPresetValue>44000 && uvhfPresetValue<47000){firstDigit=1;secondDigit=4;} else if (uvhfPresetValue>47000 && uvhfPresetValue<51000){firstDigit=1;secondDigit=5;} else if (uvhfPresetValue>51000 && uvhfPresetValue<54000){firstDigit=1;secondDigit=6;} else if (uvhfPresetValue>54000 && uvhfPresetValue<56500){firstDigit=1;secondDigit=7;} else if (uvhfPresetValue>56500 && uvhfPresetValue<60000){firstDigit=1;secondDigit=8;} else if (uvhfPresetValue>60000 && uvhfPresetValue<63000){firstDigit=1;secondDigit=9;} else if (uvhfPresetValue>63000 && uvhfPresetValue<=65535){firstDigit=2;secondDigit=0;} lc.setDigit(0,5,firstDigit,false); lc.setDigit(0,6,secondDigit,false); } DcsBios::IntegerBuffer uvhfPresetBuffer(0x30a6, 0xffff, 0, onUvhfPresetChange); DcsBios::RotaryEncoder uvhfPresetRot("UVHF_PRESET_ROT", "DEC", "INC", 6, 7); void setup() { DcsBios::setup(); lc.shutdown(0, false); lc.setIntensity(0,9); } void loop() { DcsBios::loop(); } if i look in the liveData ControlReference, the values are good. Separatly, the functions are working well, but when them are both in my sketch only the Selected Preset works. The same functions works well with UHF Radio.. i don't understand where is the problem... i'm working on it since many days... Thanks for your help and for my burning head..:thumbup:
  11. Hi all, i don't know if it's a know problem, no result for searching in this forum... so, when you replaying a track where you have used the autopilot, the plane goes to crash, other player be fine. thanks
  12. Thank you Ian, this is quite normal , priority is your studies. @++ Exo7
  13. Exo7

    Screenshots!

    Screenshots! Exo7
  14. MEGA RS485 Slave Hi Ian, is it possible to use Mega 2560 at RS485 Slave ? i have try to upload the exemple RS485 Slave sketch from the Arduino librarie 0.1.4 or 0.2 in a MEGA 2560 and i have many compilation errors.. In file included from C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:30:0, from sketch\RS485Slave.ino.cpp:1: C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc: In function 'void DcsBios::USART_RX_vect()': C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc:187:6: warning: 'USART_RX_vect' appears to be a misspelled signal handler [enabled by default] ISR(USART_RX_vect) { rs485slave.rxISR(); } ^ C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc: In function 'void DcsBios::USART_TX_vect()': C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc:188:6: warning: 'USART_TX_vect' appears to be a misspelled signal handler [enabled by default] ISR(USART_TX_vect) { rs485slave.txcISR(); } ^ C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc: In function 'void DcsBios::USART_UDRE_vect()': C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc:189:6: warning: 'USART_UDRE_vect' appears to be a misspelled signal handler [enabled by default] ISR(USART_UDRE_vect) { rs485slave.udreISR(); } ^ In file included from C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBios.h:28:0, from C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0\examples\RS485Slave\RS485Slave.ino:14: C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc: In function 'void DcsBios::setup()': C:\Users\M2000C\Documents\Arduino\libraries\dcs-bios-arduino-library-0.2.0/DcsBiosNgRS485Slave.cpp.inc:195:3: error: 'PRR' was not declared in this scope PRR &= ~(1<<PRUSART0); ^ exit status 1 Erreur lors de la compilation. no problem with Nano or Uno... Thanks for your help Exo7
  15. the cockpit data are local, not on the server. the server is just managing the flight data (position of the aircraft, IA,...). the local export.lua is used for simpit.
  16. Once again... Export.lua... post your export.lua.
  17. Your problem is here. Something wrong in the Export.lua. Check it.. Exo7
  18. What's append in your dcs.log file ? Post it here . Exo7
  19. Fortunately.. :music_whistling: The 2000C and 2000-5 have the same cockpit, changing only a few instruments and the dashboard which embeds MFDs and HMD ... :doh:
  20. hey, the problem was solved. it was my Internet Provider redirections failed.. @++
  21. Take a look here : [ame] [/ame] ;)
  22. Hello everyone, I have problems to set up a dedicated server, then I request help from the "specialists" of the community ... the specs: Citrix XenServer virtual server 12vCPU XEON E5-2620 2.10Ghz 40 GB RAM WINDOWS 2012 Datacenter (to support 12 vCPUs) Internet connection 800M / 800M (must not be the problem ...) DCS WORLD 1.5.2 (official) the mods: autoexec.cfg -> render3D false, and maxfps 30 (also in graphic.lua, in case of..) options.lua: options = { [ "Difficulty"] = { [ "AvionicsLanguage"] = "native" [ "Birds"] = 0, [ "CockpitStatusBarAllowed"] = false, [ "CockpitVisualRM"] = false, [ "EasyCommunication"] = false, [ "EasyFlight"] = false, [ "EasyRadar"] = false, [ "ExternalViews"] = true [ "Oil"] = false, [ "Geffect"] = "realistic" [ "HideStick"] = false, [ "IconsTheme"] = "nato" [ "Immortal"] = false, [ "Impostors"] = "" [ "Labels"] = false, [ "Map"] = true [ "MiniHUD"] = false, [ "Options View"] = "optview_all" [ "Padlock"] = false, [ "PermitCrash"] = false, [ "Radio"] = false, [ "Reports"] = true [ "SetGlobal"] = true [ "SpectatorExternalViews"] = true [ "Tips"] = true [ "Units"] = "imperial" [ "UserSnapView"] = true [ "Weapons"] = false, }, [ "Graphics"] = { [ "DOF"] = 0, [ "HDR"] = 0, [ "LensEffects"] = 0, [ "MSAA"] = 0, [ "Oculus Rift"] = false, [ "Anisotropy"] = 0, [ "Appearance"] = 1.6666666666667, [ "CivTraffic"] = "" [ "Clouds"] = 1, [ "ClutterMaxDistance"] = 0, [ "DisableAero"] = true [ "Effects"] = 3 [ "FlatTerrainShadows"] = 0, [ "FullScreen"] = false, [ "HeatBlr"] = 0, [ "Height"] = 768, [ "Lights"] = 2 [ "MultiMonitorSetup"] = "1camera" [ "PreloadRadius"] = 100, [ "ShadowTree"] = false, [ "Shadows"] = 0, [ "Sync"] = false, [ "TerrainTextures"] = "min" [ "Textures"] = 0, [ "TreesVisibility"] = 1500 [ "VisibRange"] = "Low" [ "Water"] = 0, [ "Width"] = 1280 }, [ "Miscellaneous"] = { [ "Coordinate_Display"] = "Lat Long" [ "F2_view_effects"] = 1, [ "Accidental_failures"] = false, [ "F10_awacs"] = true [ "F11_free_camera"] = true [ "F5_nearest_ac"] = true [ "Force_feedback_enabled"] = false, [ "Headmove"] = false, [ "Show_pilot_body"] = false, [ "Synchronize_controls"] = false, }, [ "Plugins"] = { [ "Su-25T"] = { [ "CPLocalList"] = "default", }, [ "TF-51D"] = { [ "CPLocalList"] = "default", [ "Assistance"] = 100, [ "AutoRudder"] = false, }, }, [ "Sound"] = { [ "GBreathEffect"] = false, [ "Cockpit"] = 0, [ "Gui"] = 0, [ "Headphones"] = 0, [ "Hear_in_helmet"] = false, [ "Music"] = -12, [ "RadioSpeech"] = false, [ "Subtitles"] = false, [ "Volume"] = 0, [ "World"] = 0, }, [ "Views"] = { [ "Cockpit"] = { [ "Avionics"] = 0, [ "Mirrors"] = false, [ "Reflections"] = false, }, }, } serverSettings.lua: cfg = { [ "IsPublic"] = true [ "MissionList"] = { [1] = "C: \\ Missions \\ Test Mission.miz" } - End of [ "missionList"] [ "Bind_address"] = "" [ "Advanced"] = { [ "Event_Role"] = true [ "Allow_object_export"] = false, [ "Pause_on_load"] = false, [ "Event_Connect"] = true [ "Event_Ejecting"] = true [ "Event_Kill"] = true [ "Event_Takeoff"] = false, [ "Pause_without_clients"] = true [ "Client_outbound_limit"] = 0, [ "Client_inbound_limit"] = 0, [ "Event_Crash"] = true } - End of [ "advanced"] [ "Password"] = "" [ "Port"] = 10308, [ 'Version'] = 1, [ "Name"] = "** Exo7 Test Server **" [ "Description"] = "" [ "ListLoop"] = false, [ "ListShuffle"] = false, [ "Maxplayers"] = 16, } - End of cfg Editing the registry key HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ GraphicsDrivers \ TdrDelay = 10 The server is directly on a public IP, all ports are redirected to that server. The firewall server is configured to pass incoming and outgoing connections from all local ports to all applications ("Full open" for testing). The client is not on the same network as the server (2 differents sites), i can't test in LAN for the moment. I can run the DCS server, with a test mission that included 2 M2000C, I can connect as a spectator on the server and see the terrain (free view). This mission was created on the server. The problems : 1- the server is not visible in the list of multiplayer servers, by cons I can connect to it via "IP connection" -> <my public ip>: 10308 2- when I connect with the customer and I take a slot, plane is fixed at 30m from the ground (while cold parking) no possible control in the air, against the views work. - In the client chat I directly have "Exo7 - Back to spectators" - Chat server I have "Exo7 occupied ..blabla" but not return to the spectators ... - In the end the client slot is ejected. the logs : during the assignment process is DCS.exe to 60% of CPU (does not move when the client connection) and RAM to about 2GB (increases slightly to the client connection) DCS.log Server: I voluntarily replaced public IP .. === Log ouvert UTC 2016-02-04 2:29:14 p.m. VFS 00000.000 INFO: Using 'Saved Games': "C: \ Users \ Administrator \ Saved Games" 00000.001 INFO DCS: DCS / 1.5.2.49392 (x86_64, Windows / 6.1.7600) DCS 00000.001 INFO: CPU cores: 12 System RAM: MB 39991 00000.012 INFO EDCORE (dDispatcher) enterToState_: 0 00000.021 INFO Dispatcher: 2016/2/4 3:29 p.m. V1508170900 00000.034 INFO INPUT: Keyboard Device created 00000.223 INFO SOUND: 1074 sdefs loaded from "sounds \ sdef" SOUND 00000.304 INFO: Using driver: xaudio27 00000.307 INFO SOUND: XAudio2: Using Device ID '??' Name: '' channels: 0 00000.307 ERROR SOUND: XAudio2: can not create MasteringVoice 00000.307 SOUND ERROR: Failed to start xaudio27 00000.310 ALERT SOUND: Can not start XAudio2. 00000.310 SOUND ERROR: can not start renderer VFS 00000.765 ERROR: Can not mount './CoreMods/WWII Units / Liveries' to '/ textures // liveries /'. VFS 00000.775 ERROR: Can not mount './CoreMods/aircraft/Hawk/Textures/Avionics' to '/ textures /'. VFS 00000.778 ERROR: Can not mount './CoreMods/aircraft/M-2000C/Skins/1/ME' to '/ textures /'. VFS 00000.778 ERROR: Can not mount './CoreMods/aircraft/M-2000C/Textures/Weapons' to '/ textures /'. 00000.783 INFO SOUND: 10 sdefs loaded from "\ coremods \ aircraft \ mig-21bis \ sounds \ sdef." WorldPlugIns 00000.838 INFO: No 'RegistryPath' for 'AVIODEV_C-101' GRAPHICSVISTA 00000.883 INFO: Creating Resource "Unicode" of Type 5 DX11BACKEND 00000.891 INFO: TRUNK renderer init: showShaderError coreCount = 1 DX11BACKEND 00000.900 INFO: Driver Creates Competitor - 0 DX11BACKEND 00000.900 INFO: Driver Command Lists - 0 DX11BACKEND 00000.905 INFO: DX11ShaderBinaries :: loadShaders DX11BACKEND 00002.291 INFO: DX11ShaderBinaries :: loadShaders finished VFS 00002.385 ERROR: Can not mount './Bazar/World/textures/L-39_C' to '/ textures /'. Renderer 00002.631 INFO: Loading metashader hiding from C: \ Users \ Administrator \ Saved Games \ DCS \ metashaders / 00002.632 INFO Renderer: Metashader cache: 0 (0) cached shaders out of time 00040.058 DX11BACKEND ERROR: RenderTarget "rtDynamicCloudMap" not found EDTERRAINGRAPHICS3 00040.058 INFO: EDTG :: CreateSurfaceRenderItem () 00040.808 EDOBJECTS ERROR: Destruction shape not found AVIASHTAB_CRASH 00040.810 INFO FIELD: Lsystem :: Lsystem 00040.899 INFO EDCORE (dDispatcher) enterToState_: 1 VFS 00041.092 ERROR: {add_location "My Tasks", "C: \ Users \ Administrator \ Saved Games \ DCS \ Missions \"}: path already added as "My Tasks" VFS 00041.510 ERROR: Can not mount './CoreMods/WWII Units / Liveries' to '/ textures // liveries /'. VFS 00041.511 ERROR: add_location { "WWII Units", "Units ./CoreMods/WWII / Missions /"}: path already added as "WWII Units" VFS 00041.514 ERROR: Can not mount './CoreMods/aircraft/Hawk/Textures/Avionics' to '/ textures /'. VFS 00041.515 ERROR: Can not mount './CoreMods/aircraft/M-2000C/Skins/1/ME' to '/ textures /'. VFS 00041.515 ERROR: Can not mount './CoreMods/aircraft/M-2000C/Textures/Weapons' to '/ textures /'. VFS 00041.521 ERROR: add_location { "Su-25T", "./Mods/aircraft/Su-25T/Missions/fr/"}: path already added as "Su-25T" VFS 00041.521 ERROR: add_location { "TF-51D", "./Mods/aircraft/TF-51D/Missions/fr/"}: path already added as "TF-51D" 00041.659 DXGUI_EDGE_RENDER ERROR: Can not load texture '' DXGUI 00044.012 INFO: Can not load are [C: \ Program Files \ Eagle Dynamics \ DCS World \ dxgui \ skins \ fonts \]! 00047.391 DX11BACKEND ERROR: Textured "dxgui / skins / skinme / images / set picture / button.png" not found 00047.896 INFO EDCORE (dDispatcher) enterToState_: 2 00048.207 INFO EDCORE (dDispatcher) enterToState_: 3 00048.288 INFO NET Login success. 00050.824 INFO NET HAS customer started 00053.579 INFO NET HAS customer stopped 00055.664 INFO NET server has started NET 00059.119 INFO: Registering server as <IP PUBLIC SERVER>: 10308 (port is assumed to be open). 00059.120 INFO Dispatcher: Mission loading file: "C: \ Missions \ Test Mission.miz" 00059.160 INFO NET Loading Mission: "C: \ Missions \ Test Mission.miz" 00059.161 INFO EDCORE (dDispatcher) enterToState_: 4 00059.173 INFO FIELD:. Lsystem :: Init \ Bazar \ Land \ terrain.cfg.lua EDTERRAINGRAPHICS3 00059.173 INFO: EDTG :: Init () EDTERRAINGRAPHICS3 00059.174 INFO: lma: .///Bazar/Graphics/lma/edge_land.lua EDTERRAINGRAPHICS3 00059.175 INFO: lma: .///Bazar/Graphics/lma/edge_landheight.lua EDTERRAINGRAPHICS3 00059.175 INFO: lma: .///Bazar/Graphics/lma/edge_lights.lua EDTERRAINGRAPHICS3 00059.176 INFO: lma: .///Bazar/Graphics/lma/edge_map.lua EDTERRAINGRAPHICS3 00059.178 INFO: lma: .///Bazar/Graphics/lma/edge_mfd.lua EDTERRAINGRAPHICS3 00059.178 INFO: lma: .///Bazar/Graphics/lma/edge_shelf.lua EDTERRAINGRAPHICS3 00059.179 INFO: lma: .///Bazar/Graphics/lma/edge_landmask.lua EDTERRAINGRAPHICS3 00059.179 INFO: lma: .///Bazar/Graphics/lma/edge_grassheight.lua EDTERRAINGRAPHICS3 00059.180 INFO: lma: .///Bazar/Graphics/lma/edge_cascadshadows.lua EDTERRAINGRAPHICS3 00059.180 INFO: lma: .///Bazar/Graphics/lma/edge_radar.lua EDTERRAIN 00059.251 INFO: CreateTerraDispatch EDTERRAIN 00059.252 INFO: TerraDispatch create 0000000013183E50 EDTERRAIN 00059.252 INFO: SetTerraDispatch 00059.263 EDOBJECTS ERROR: SMOKE-POD already Declared in shapes.txt SMOKE-POD already Declared in shapes.txt UB-16-57UMP already Declared in shapes.txt C-101_DESTR already Declared in shapes.txt Winfo 00059.946 INFO: multiple adapters 00060.466 WARNING LOG: 1 duplicate messages (s) skipped. 00060.466 INFO FIELD: Lsystem :: Load () EDTERRAIN 00060.470 INFO: TerraDispatch 0000000013183E50 Init (file = \ Bazar \ Land \ terrain.cfg.lua, season = summer, quality = high, lang = en.) EDTERRAIN 00060.473 INFO: TerraDispatch 0000000013183E50 Init (landfile3) EDTERRAIN 00060.544 INFO: TerraDispatch 0000000013183E50 Init (roads3) EDTERRAIN 00060.620 INFO: TerraDispatch 0000000013183E50 Init (vfstextures) EDTERRAIN 00060.950 INFO: TerraDispatch 0000000013183E50 Init (superficial3) EDTERRAIN 00061.079 INFO: TerraDispatch 0000000013183E50 Init (map3) EDTERRAIN 00061.777 INFO: TerraDispatch 0000000013183E50 Init (smallshit) EDTERRAIN 00061.781 INFO: TerraDispatch 0000000013183E50 Init (Scene3) EDTERRAIN 00061.781 INFO: TerraDispatch 0000000013183E50 Init (districts) EDOBJECTS 00061.889 INFO: trees_1_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_3_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_5_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_6_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_7_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_8_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_9_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_2_blk shape not found in shapetables EDOBJECTS 00061.889 INFO: trees_4_blk shape not found in shapetables EDTERRAINGRAPHICS3 00061.907 INFO: EDTG :: InitTerrain () 00061.907 INFO FIELD: Lsystem :: InitSurface () 00061.919 INFO FIELD: Lsystem :: InitScenes () DX11BACKEND 00061.919 INFO: Reloading textures ... DX11BACKEND 00061.919 INFO: reloading texture "DummyWhiteTexture" DX11BACKEND 00061.925 INFO: reloading texture "/textures/posteffects/focus.png" EDTERRAINGRAPHICS3 00062.257 INFO: EDTG :: CreateSurfaceRenderItem () 00106.096 WARNING LOG: 12 duplicate messages (s) skipped. 00106.096 INFO DCS: Dispatcher: initial random seed = 6260699 00106.096 INFO DCS: Dispatcher: apply random seed = 6260699 00106.096 INFO NET state = ssLoading WORLDGENERAL 00106.099 INFO: loaded from Mission Scripts / World / GPS_GNSS.lua EDTERRAIN 00106.100 INFO: TerraDispatch 0000000013183E50 Init (navigation) 00107.421 WRADIO WARNING: Can not create NDB "BS NDB_BELOSARAYSKAYA" beacon on the water! 00109.449 DX11BACKEND ERROR: RenderTarget "SmokeTrailNoiseTex" not found 00109.528 DX11BACKEND ERROR: Textured "wic / normal_huge.png" not found 00109.577 DX11BACKEND ERROR: Textured "normal_tmp.png" not found 00109.579 DX11BACKEND ERROR: Textured "testAtlas.dds" not found WORLDGENERAL 00109.583 INFO: loaded from Mission Config / View / SnapViewsDefault.lua WORLDGENERAL 00109.584 INFO: loaded from Mission Config / View / View.lua WORLDGENERAL 00109.585 INFO: loaded from Mission Config / View / Server.lua 00109.803 INFO Config: netview started 00110.327 DX11BACKEND ERROR: Textured "water_circle.tga" not found 00110.628 DX11BACKEND ERROR: Textured "Ka-50 PilotFilter.tga" not found 00112.063 NGMODEL WARNING: Model 'trees_1_blk' has invalid bounding box. 00112.064 NGMODEL WARNING: Model 'trees_3_blk' has invalid bounding box. 00112.064 NGMODEL WARNING: Model 'trees_5_blk' has invalid bounding box. 00112.065 NGMODEL WARNING: Model 'trees_6_blk' has invalid bounding box. 00112.066 NGMODEL WARNING: Model 'trees_7_blk' has invalid bounding box. 00112.080 NGMODEL WARNING: Model 'trees_8_blk' has invalid bounding box. 00112.080 NGMODEL WARNING: Model 'trees_9_blk' has invalid bounding box. 00112.089 NGMODEL WARNING: Model 'trees_2_blk' has invalid bounding box. 00112.090 NGMODEL WARNING: Model 'trees_4_blk' has invalid bounding box. 00115.581 INFO DCS: ComplexTask :: open_state (). Precached data loading tasks. 00115.581 INFO DCS: ComplexTask :: load_task_data (). "Follow_Line" task data loaded. 00115.582 INFO DCS: ComplexTask :: load_task_data (). "Follow_Vector" task data loaded. 00115.582 INFO DCS: ComplexTask :: load_task_data (). "Follow_Vector_Old" task data loaded. 00115.583 INFO DCS: ComplexTask :: load_task_data (). "Approach" task data loaded. 00115.584 INFO DCS: ComplexTask :: load_task_data (). "Cannon_Ground_Attack" task data loaded. 00115.585 INFO DCS: ComplexTask :: load_task_data (). "Rocket_Attack" task data loaded. 00115.585 INFO DCS: ComplexTask :: load_task_data (). "Level_Bombing" task data loaded. 00115.587 INFO DCS: ComplexTask :: load_task_data (). "Dive_Bombing" task data loaded. 00115.589 INFO DCS: ComplexTask :: load_task_data (). "Missile_Ground_Target_Attack" task data loaded. 00115.589 INFO DCS: ComplexTask :: load_task_data (). "Missile_Ground_Target_Level_Attack" task data loaded. 00122.604 INFO NET simulation is ready, state = ssPaused EDTERRAINGRAPHICS3 00122.817 INFO: Force loading pipeline 'lockon'. 100.000000 radius. Pos = -4737.022949,145.000000,242694.906250! EDTERRAINGRAPHICS3 00123.108 INFO: force loading finished! EDTERRAINGRAPHICS3 00123.108 INFO: Force loading pipeline 'map'. 20.000000 radius. Pos = -4737.022949,145.000000,242694.906250! EDTERRAINGRAPHICS3 00123.160 INFO: force loading finished! GRAPHICSVISTA 00123.918 INFO: Creating Resource "Unicode" of Type 5 00187.202 INFO NET: Accepting connection from <IP CLIENT PUBLIC>: 38131 00187.412 INFO NET: append: client 2 00219.701 INFO NET: remove: client 2 00229.819 INFO NET server has stopped EDTERRAINGRAPHICS3 00229.835 INFO: EDTG :: DeleteSurfaceRenderItem () 00230.161 WARNING LOG: 11 duplicate messages (s) skipped. 00230.161 INFO Config: netview stopped 00230.468 INFO EDCORE (dDispatcher) enterToState_: 3 00232.376 INFO EDCORE (dDispatcher) enterToState_: 5 00232.565 INFO SOUND: detaching sdef path "\ mods \ aircraft \ tf-51d \ sounds \ sdef \." 00232.565 INFO SOUND: detaching sdef path "\ coremods \ aircraft \ mig-21bis \ sounds \ sdef \." 00232.565 INFO SOUND: detaching sdef path "sounds \ sdef \" 00232.582 INFO FIELD: Lsystem :: Exit () 00232.582 INFO FIELD: Lsystem :: CleanScenes () EDTERRAINGRAPHICS3 00232.582 INFO: EDTG :: Exit () EDTERRAIN 00232.616 INFO: DeleteTerraDispatch EDTERRAIN 00232.629 INFO: TerraDispatch 0000000013183E50 Exit (vfstextures) EDTERRAIN 00232.688 INFO: TerraDispatch destroy 0000000013183E50 EDTERRAINGRAPHICS3 00233.107 INFO: EDTG :: DeleteSurfaceRenderItem () 00233.647 WARNING LOG: 1 duplicate messages (s) skipped. EDTERRAINGRAPHICS3 00233.647 INFO: EDTG :: Exit () === Log closed. With this client, I get to fly on other servers ... Thanks for your help !! @ ++ Exo7
  23. You´re right, but it's working... All CLP leds on 1 Mega powered over USB and 2 GND pin.. Exo7
  24. If it's just for led, just one Mega is ok. I'm using it for the caution light panel without anything more... Exo7
  25. After update my Mirgar fall in pices... "After update my Mirgar fall in pices" it's seems your keyboard to !! ;)
×
×
  • Create New...