TBS DVB-S2 Quad tuner TV Card, PCIe x1 (6984) (1 Viewer)

elsmandino

Portal Pro
March 3, 2011
351
12
Home Country
United Kingdom United Kingdom
TBS DVB-S2 Quad tuner TV Card, PCIe x1 (6984).

I know that this card is pretty new (and pretty expensive), but was wondering if anyone had any experience of this card.
 

mm1352000

Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,577
    8,224
    Home Country
    New Zealand New Zealand
    Apparently it hasn't been officially released yet. You're unlikely to find anyone with experience using an unreleased card until it is released. ;)
     

    elsmandino

    Portal Pro
    March 3, 2011
    351
    12
    Home Country
    United Kingdom United Kingdom
    Thanks for that, I'll hold off for a bit then and stick with what I have for the time being
     

    mm1352000

    Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,577
    8,224
    Home Country
    New Zealand New Zealand
    Hi Vinegartom

    I don't think mcraenz would mind me telling you that he has one. DiSEqC is not supported right now as TBS are using a different interface for that card compared to other cards. Aside from that, it *appears* to work. But speak to mcraenz...

    mm
     

    raintree_county

    Portal Member
    August 5, 2011
    9
    6
    Home Country
    China China
    Hi Vinegartom

    I don't think mcraenz would mind me telling you that he has one. DiSEqC is not supported right now as TBS are using a different interface for that card compared to other cards. Aside from that, it *appears* to work. But speak to mcraenz...

    mm

    Hi mm,
    Guess "DiSEqC is not supported" due to the previous driver which has wrong DiSEqC command. New driver V1.0.1.2 fixed this problem and from our testing, DiSEqC is working with MediaPortal correctly. Thanks!
     

    mm1352000

    Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,577
    8,224
    Home Country
    New Zealand New Zealand
    Hi raintree_county

    So can you confirm that the NXP DiSEqC format is no longer required for the 6984, 6925 etc. ?

    mm
    :)

    [Edit: I should say Trident, not NXP.]
     

    raintree_county

    Portal Member
    August 5, 2011
    9
    6
    Home Country
    China China
    Hi mm,

    NXP/Trident DiSEqC format is not used by TBS6984 or TBS6925. TBS uses self-defined DiSEqC interface and all information could be found from SDK on TBS website:)
     

    mm1352000

    Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,577
    8,224
    Home Country
    New Zealand New Zealand
    Hi again

    I only called it "NXP" because older versions of the SDK called the function "turbosight_nxp_send_diseqc". The latest versions of the SDK don't mention that. To clarify (this is code taken from the latest SDK on your website):

    Code:
    	[B]"QBOX" method[/B]
    	if(nDeviceType == TBS5980 || nDeviceType == TBSQBOX3|| nDeviceType == TBS5922)
    	{
    		if (m_pKsCtrl)
    		{		
    			QBOXDVBSCMD DiSEqCRequest;
    			ZeroMemory(&DiSEqCRequest, sizeof(DiSEqCRequest));
    
    			CopyMemory(DiSEqCRequest.motor, cmd, 4);
    
    			hr = m_pKsCtrl->Set(KSPROPERTYSET_QBOXControl,
    				KSPROPERTY_CTRL_MOTOR,
    				&DiSEqCRequest,sizeof( QBOXDVBSCMD ),
    				&DiSEqCRequest,sizeof( QBOXDVBSCMD ));
    
    			if (hr == S_OK)
    			{
    				bRet = TRUE;
    			}
    
    		}
    	}
    
    	[B]"NXP" method[/B]
    	if(nDeviceType == TBS6925|| nDeviceType == TBS6922|| nDeviceType == TBS6984A
    		|| nDeviceType == TBS6984B|| nDeviceType == TBS6984C|| nDeviceType == TBS6984D)
    	{
    
    		if (m_pKsCtrl)
    		{		
    			TBSDISEQC_MESSAGE_PARAMS DiSEqCRequest;
    			ZeroMemory(&DiSEqCRequest, sizeof(DiSEqCRequest));
    
    			DiSEqCRequest.uc_diseqc_send_message_length = cmdlen;
    			CopyMemory(DiSEqCRequest.uc_diseqc_send_message, cmd, cmdlen);
    
    			if (m_pKsCtrl->Set(KSPROPSETID_BdaTunerExtensionProperties, 
    				KSPROPERTY_BDA_DISEQC_MESSAGE, 
    				&DiSEqCRequest,sizeof(TBSDISEQC_MESSAGE_PARAMS),
    				&DiSEqCRequest, sizeof(TBSDISEQC_MESSAGE_PARAMS)
    				)  == S_OK)
    			{
    				bRet = TRUE;
    			}
    
    
    		}
    
    	}//end if(nDeviceType = TBS6925)
    
    	[B]"698x/892x" method[/B]
    	if (nDeviceType == TBS6921 || nDeviceType == TBS8921|| nDeviceType == TBS8922
    		|| nDeviceType == TBS8920|| nDeviceType == TBS6920|| nDeviceType == TBS6981A
    		|| nDeviceType == TBS6981B|| nDeviceType == TBS6980A|| nDeviceType == TBS6980B)
    	{
    		if (m_pKsCtrl)
    		{
    
    			hr = m_pKsCtrl->QuerySupported(KSPROPSETID_BdaTunerExtensionProperties,
    				KSPROPERTY_BDA_DISEQC_MESSAGE, 
    				&TypeSupport);
    
    			if (FAILED(hr))
    			{
    				// DiSEqC Interface Not Supported
    			} 
    			else
    			{
    				// DiSEqC Interface Found	
    
    				DISEQC_MESSAGE_PARAMS DiSEqCRequest;
    				ZeroMemory(&DiSEqCRequest, sizeof(DiSEqCRequest));
    
    				if (cmdlen > 8)
    					cmdlen = 8;
    				DiSEqCRequest.tbscmd_mode = TBSDVBSCMD_DISEQC;
    				DiSEqCRequest.uc_diseqc_send_message_length = cmdlen;
    				CopyMemory(DiSEqCRequest.uc_diseqc_send_message, cmd, cmdlen);
    				if (m_KsTunerPropSet->Get(KSPROPSETID_BdaTunerExtensionProperties, 
    					KSPROPERTY_BDA_DISEQC_MESSAGE, 
    					&DiSEqCRequest,sizeof(DISEQC_MESSAGE_PARAMS),
    					&DiSEqCRequest, sizeof(DISEQC_MESSAGE_PARAMS),
    					&bytesReturned)  == S_OK)
    					bRet = TRUE;
    			}
    
    		}

    Are you saying that the second method for TBS6925, TBS6922 and TBS6984 is not needed any more?

    To add a further question: I have a TBS 5980 :))). The QBOX DiSEqC command doesn't seem to work with it but the normal one (for 698x, 892x...) works nicely. This is a little confusing. Which cards/devices should the QBOX DiSEqC method be used for?

    Thanks for your comments! :D

    mm
     

    Users who are viewing this thread

    Similar threads

    It's getting weirder..... If I remove all the IP cards in the TVServer setup and then add them back I can scan the M3u and tune the stations but if I rescan it on the same card it just keeps updating the 1 channel. My brain is melting.........
    It's getting weirder..... If I remove all the IP cards in the TVServer setup and then add them back I can scan the M3u and tune the...
    Having great fun with this still. I have a fairly good PC setup, Ryzen 5 8500g, Msi Pro 650M-P with 32GB of RAM with a TBS 6281 and...
    Replies
    2
    Views
    129
    I've setup my HDHomeRun in MP1 as (4) IPTV cards rather than Atsc. I can see the (4) Atsc cards, but just have them disabled. I did it this way so I didn't have to edit the channel names every time tested a new TV-server install. Anyway, it works. I don't know if this would get you past the BDA driver issue. I'll provide more...
    I've setup my HDHomeRun in MP1 as (4) IPTV cards rather than Atsc. I can see the (4) Atsc cards, but just have them disabled. I...
    I am brand new to MediaPortal. I have installed MP 2.4.1 on Windows 10. It is a fresh install and fully up to date. I have an...
    Replies
    19
    Views
    3K
    When I tested MP 2.5 some months ago using TVE3.5, I found that "scan for channels" failed to find any channels when I selected a DVB-T2 tuner (a TBS 6284) :(, but succeeded when I used a DVB-T tuner (a Pinnacle 2000i) :). Obviously the Pinnacle found only those channels broadcast in DVB-T MUXes (in the UK we have both DVB-T MUXes and...
    When I tested MP 2.5 some months ago using TVE3.5, I found that "scan for channels" failed to find any channels when I selected a...
    Hi all Running 1.7.1.0 TV Server as part of a full upgrade to MP2 2.5 setup After some problems with retuning (solved -...
    Replies
    3
    Views
    717
    It took a while but loading the three updates and waiting, (I wandered off doing other things), while the Win 7 searched for updates eventually brought about 170 available updates. I picked the latest, largest and Cumulative ones and everything burst into action enough to re-install MediaPortal 1.33 which is running very well. I let...
    It took a while but loading the three updates and waiting, (I wandered off doing other things), while the Win 7 searched for...
    Hi Running MP1 - 1.39 for long while, no issues. 10th April [same time as 2024-KB5037036 Cumulative Update for .NET Framework...
    Replies
    11
    Views
    2K
    MP1 MP2 PiP audio problem DE
    @Brownard the user @Nordfinn reminded me in the MP2.5 release thead, that he still has this issue. I could not reproduce it as mentioned above, but could confirm the issue on his PC. Have you ever face the problem yet?
    @Brownard the user @Nordfinn reminded me in the MP2.5 release thead, that he still has this issue. I could not reproduce it as...
    Still trying to solve this: I get no audio from the second picture in PiP mode. Log files of my attempting to do so are attached...
    Replies
    2
    Views
    2K
    Top Bottom