The following warnings occurred: | |||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.4.0 (Linux)
|
Realsim gear and TDS - Printable Version +- TDS Sim Software Forums (http://www.forum.tdssim.com) +-- Forum: TDS Sim Software (http://www.forum.tdssim.com/forum-1.html) +--- Forum: TDS GTNXi Flight Simulator (http://www.forum.tdssim.com/forum-2.html) +--- Thread: Realsim gear and TDS (/thread-1017.html) Pages:
1
2
|
Realsim gear and TDS - barneybus - 04-12-2024 Hello, I am using two realsimgear G5s running Air Manager G5 premium panels. I also have a GTN650 and 750. I use the default analogue c172. For some reason, when I use the TDS the GPS course bar on the HSI flickers back and fourth and doesn't work correctly. Also when I set the 650 as NAV2 and the 750 as NAV1 the CDI selector seems to change both of them from GPS to VLOC? Also for some reason the TDS affects the altitude bug on the G5. Any suggestions? Cheers, RE: Realsim gear and TDS - adminOwner2 - 04-13-2024 Hello, The default analog C172 has the WT GNS, which is causing a conflict with the TDS GTNXi. You will have to disable the WT GNS by setting the respective WT GNS disable LVars, do you have this possibility? RE: Realsim gear and TDS - adminOwner2 - 04-13-2024 The LVars that need to be set to 1 are: L:XMLVAR_GPS_DISABLED_AS530_1 L:XMLVAR_GPS_DISABLED_AS430_1 This will disable the WT GNS and the autopilot and HSI will function properly. RE: Realsim gear and TDS - barneybus - 04-13-2024 (04-13-2024, 10:41 AM)adminOwner2 Wrote: The LVars that need to be set to 1 are: Sorry I don’t know how to do this. Can you please tell me? I deleted the vcockpit WT in the panel.cfg but this didn’t solve the problem. RE: Realsim gear and TDS - Larry J - 04-13-2024 (04-13-2024, 03:22 PM)barneybus Wrote:(04-13-2024, 10:41 AM)adminOwner2 Wrote: The LVars that need to be set to 1 are: I second that. Please explain how we are supposed to disable these. Thank you in advance for your help. RE: Realsim gear and TDS - adminOwner2 - 04-14-2024 Hello, Do you have spad.next? If you do, here is a tutorial on how to achieve this: https://youtu.be/cTnzSreUoSs?si=vYMZ14UfE8gbRfw9 As far as the panel.cfg modifications not working, it seems that something was not performed right. Please provide us with the full path of the panel.cfg file as well as the exact sections which you have modified and how they have been modified. Best regards RE: Spad.Next - Larry J - 04-14-2024 Thanks for reply. No I do not have Spad.Next. Thank you in advance. RE: Realsim gear and TDS - adminOwner2 - 04-15-2024 We will analyze if/what can be done on our end for those not running Spad.next. In addition you can look into other possibilities on setting Lvars or the panel.cfg modifications. We will update this thread as it seems like a high interest feature. RE: Realsim gear and TDS - Larry J - 04-24-2024 I appreciate your responses. I develop software myself and know this is no easy task. You have a great accomplishment here for sure. Unfortunately you have not provided a solution. I paid for your program, as I suspect everyone did. We all expect it to work as described. I would have expected a warning prior to purchase that I would suffer these issues. Did I miss that? I do not want to buy more software (Spad.Next) just to fix the function in your program that is causing me grief. I would have expected you to automatically address this upon discovery. I am hoping for a solution of one or more of the following:
Thanks in advance for your time and support. RE: Realsim gear and TDS - Larry J - 04-25-2024 OK, for anyone interested, I coded an Air Manager solution that is working for me. I created a generic switch that sets the LVARS. Here is my code to disable or re-enable the GNS430. Simply change the 430 to 530 as needed. I do hope this helps some folks. Thanks for reading. function switch_click_callback(position) if position == 0 then switch_set_position(switch_id, 1) fs2020_variable_write("L:XMLVAR_GPS_DISABLED_AS430_1", "Enum", 1) elseif position == 1 then switch_set_position(switch_id, 0) fs2020_variable_write("L:XMLVAR_GPS_DISABLED_AS430_1", "Enum", 0) end end |