Those listed below are our PROUD SatelliteGuys GOLD Sponsors!
Applied Instruments DishStore.NET Home Theater Cruise glorystar.tv satelliteavgs tele-satellite.com

Welcome HOME to SatelliteGuys!


  •  » Looking for help picking a television provider?
  •  » Need Help with your Satellite System?
  •  » Need Advice on your Home Theater Setup?
  •  » Looking for the latest industry news and rumors?

...then you have come to the right place!

DIRECTV, DISH Network, FTA Satellite, Cable TV, HDTV even 3DTV!

We Can Help! We are known as America's Satellite Information Source!
YES! I want to register an account for FREE right now!

YOU ARE AT THE PLACE WHERE INDUSTRY EXPERTS HANG OUT!

p.s.: Registered members see a lot less ads! REGISTER TODAY!

Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast
Results 21 to 30 of 56
  1. #21
    KrX
    KrX is offline SatelliteGuys Freshman
    Join Date
    Aug 25th, 2010
    Location
    Poland
    Posts
    5
    ADVERTS 1
    It is Technisat Skystar HD2
    lspci shows:

    Multimedia controller: Twinhan Technology Co. Ltd Mantis DTV PCI Bridge Controller [Ver 1.0] (rev 01)

    (STB0899 Multistandard)

    It works fine in dvb-s2 (for example no problem with scan-s2, some windows programs, etc), but i need a program which will only tune to selected transponder (dvb-s, dvb-s2) and then i can do some dvbsnoop analysys. (maybe You know any other program which will do the job ?). All programs i have found works only with dvb-s

  2. # ADS
    Register Today & This Ad Goes Away! Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many
     
  3. #22
    updatelee's Avatar
    updatelee is offline SatelliteGuys Junkie
    Join Date
    Jul 22nd, 2006
    Location
    Satmex 6
    Posts
    1,153
    Thread Starter
    are you using the stock v4l in the kernel or another v4l ? what kernel version ?

    uname -a

  4. #23
    KrX
    KrX is offline SatelliteGuys Freshman
    Join Date
    Aug 25th, 2010
    Location
    Poland
    Posts
    5
    I used stock kernel from debian test squeeze distro.
    Now, i'm using debian lenny
    2.6.26-2-686 #1 SMP Thu Aug 19 03:44:10 UTC 2010 i686 GNU/Linux

    with s2-liplianin v4l drivers

    and still same problem.


    I managed to walk around that problem. I modified scan-s2 (this program tunes into dvb-s2 with no problem) to stop after every tunning and wait for a keypress (my C knowledge is crappy so i don't know how to execute dvbsnoop inside another program or anything else ;| ) - and in that time i can do dvbsnoop

  5. #24
    n8fq's Avatar
    n8fq is offline SatelliteGuys Freshman
    Join Date
    Aug 28th, 2010
    Location
    Grand Haven, MI
    Posts
    21
    Well, this is a bit off-topic, but I just picked up a Genpix SkyWalker-2 (basically the SkyWalker-1 without the chassis) and I'm trying to write some software of my own to control it. I've got DVB-S working (as well as DVB-S2 on my other tuner), but I can't seem to figure out how to get DCII to work.

    For example, I want to tune in 3800V on AMC 18. LyngSat says (and my DSR-4000 confirms) that the symbol rate is 19510 ksps and the FEC coding is 3/4. So I run my FE_SET_PROPERTY ioctl to tune the card with these parameters:

    DTV_DELIVERY_SYSTEM = SYS_DCII_C_QPSK
    DTV_FREQUENCY = (5150000 - 3800000) == 1350000
    DTV_MODULATION = QPSK
    DTV_SYMBOL_RATE = 19510
    DTV_INNER_FEC = FEC_3_4
    DTV_INVERSION = INVERSION_AUTO
    DTV_ROLLOFF = ROLLOFF_AUTO
    DTV_PILOT = PILOT_AUTO

    However, the card does not lock onto the transponder. It reports a signal level of 65535 and an SNR of 3955. I've tried all 4 possible DCII delsys variants to no avail.

    So, question #1 is, what exactly should the parameters be set to in order to receive a DCII signal? Question #2 is, what are the values of the SYS_DCII_foo defines supposed to be? I just appended them to the fe_delivery_system table, yielding values of 16, 17, 18 and 19. I assume that the existing value of 4 for SYS_DSS is acceptable for that mode when/if I start messing with that.
    Last edited by n8fq; 09-02-2010 at 12:50 AM.

  6. #25
    updatelee's Avatar
    updatelee is offline SatelliteGuys Junkie
    Join Date
    Jul 22nd, 2006
    Location
    Satmex 6
    Posts
    1,153
    Thread Starter
    I can post my patch later. I'll try tonight but it might be tommorow, busy day today

  7. #26
    n8fq's Avatar
    n8fq is offline SatelliteGuys Freshman
    Join Date
    Aug 28th, 2010
    Location
    Grand Haven, MI
    Posts
    21
    I anxiously await your patch.

    Were any modifications needed to the driver itself, or just the DVB header?

  8. #27
    updatelee's Avatar
    updatelee is offline SatelliteGuys Junkie
    Join Date
    Jul 22nd, 2006
    Location
    Satmex 6
    Posts
    1,153
    Thread Starter
    here are the gp8psk patch's, and you'll also need to patch the v4l-dvb include/linux/dvb/frontend.h file so that the DGII systems are defined.

    this will allow you to tune DGII in linux using my tune-s2 app, and from there you can use my demux app to save the stream to a file. vlc plays them fine.

    UDL
    Attached Files

  9. #28
    n8fq's Avatar
    n8fq is offline SatelliteGuys Freshman
    Join Date
    Aug 28th, 2010
    Location
    Grand Haven, MI
    Posts
    21
    Alright, we're in business! Listening to music on W5 as I type this.

    I did make one change to your patch: I added a "SYS_" prefix to the defines for the DCII modes, for consistency with the other definitions.

  10. #29
    updatelee's Avatar
    updatelee is offline SatelliteGuys Junkie
    Join Date
    Jul 22nd, 2006
    Location
    Satmex 6
    Posts
    1,153
    Thread Starter
    glad it worked out well for you. Its sure nice to have DGII as an option in linux. Ive got DSS working as well for the lock, but havent had time to look into the DSS differences much. I know the packet size is smaller, but I beleive they also use different descriptors so its more then just chaning the packet size in the DMX.

  11. #30
    n8fq's Avatar
    n8fq is offline SatelliteGuys Freshman
    Join Date
    Aug 28th, 2010
    Location
    Grand Haven, MI
    Posts
    21
    Sounds like that's going to be the hard part.

    Also, just in case you haven't implemented it, the value for 7/8 FEC in the DCII split modes is 7. I haven't been able to find any transponders on either band using anything other than 3/4 or 7/8 FEC so I haven't figured out any others.

Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SatelliteGuys.US | 46 Miami Avenue | Newington, Connecticut 06111
Links monetized by VigLink