Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 23 of 37 FirstFirst ... 131821222324252833 ... LastLast
Results 221 to 230 of 368

Thread: Hivion Firmware

  1. #221
    Administrator totox69's Avatar
    Join Date
    04-01-2006
    Location
    Autre
    Posts
    48,484
    Uploads
    6,765
    Likes
    3,274

    Re: Firmware Hivion

    * 16.09.2010
    1. ZR39160 SD Model
    1) Satellites/TP list updated
    2) Biss key menu update
    After download this version, you must do ¡°Factory Reset¡± in Menu.
    If you don¡¯t that, your STB has Rooting(Hang-up).
    If you do ¡°Factory Reset¡±, all setting will be cleared include channel list.
    If you don¡¯t want it, don¡¯t update this sw.

    2. ZORAN HD USB PVR ready
    1) Supporting dual recording


    * 10.09.2010
    1. ALI SD/ZORAN HD model
    1) Satellites/TP list updated
    After download this version, you must do ¡°Factory Reset¡± in Menu.
    If you don¡¯t that, your STB has Rooting(Hang-up).
    If you do ¡°Factory Reset¡±, all setting will be cleared include channel list.
    If you don¡¯t want it, don¡¯t update this sw.

    * 13.08.2010
    1. Nxgxavxsxon¡¯s smartcard workable
    # it is example key
    # IRDKEY: 01234567
    # BOXKEY: FEDCBA9876543210
    # RSAKEY: 0123456789ABCDEF0123456789ABCDEF01234567 89ABCDEF0123456789ABCDEF0123456789ABCDEF 0123456789ABCDEF0123456789ABCDEF01234567 89ABCDEF

    # for provider id is FFFF
    # for ird number key index is 00, 8 texts
    # for boxkey index is 01, 16 texts
    # for raskey index is 02, 128 texts
    # you have to download it using dreamloader

    N FFFF 00 0123456700000000 ;ird number
    N FFFF 01 FEDCBA9876543210 ;boxkey
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key
    N FFFF 02 0123456789ABCDEF ;rsa key

    * 09.07.2010
    1. ALI29E PVR3 function updated
    - Compatible with old PVR functions.
    - Supports configurable single TS file size, largest 4GB in FAT32.
    - PC can play TS recorded file by PVR3.


    * 30.06.2010
    1. Irdetoaccess ECM/ECM updated

    * 21.06.2010
    1. Canal sat 2.6 updated

    * 25.05.2010
    1. viaccess TNT card

    * 24.05.2010
    1. ST7101, ZR180, ALI3329D/E biss key menu

    * 29.04.2010
    1. seca emm update

    SSSP – Simple Serial Sharing Protocol
    =====================================

    This Protocol defines the communication between a DVB Box and a gbox by using a RS232(serial/com/tty port) with only 4 commands to implement.


    RS232 communication settings
    ============================
    115200 8N1 (115200 Baud, 8 data bits, no parity, 1 stop bit)
    To activate add in the gbox_cfg R: { 01 } for com1, or R: { 02 } for com2
    W: and V: should be deactivated 00 00
    When developing Software you can activate thers232 debug messages by adding
    10 to the R: parameter, a example for com1 would be R: { 11 }


    Format of data
    ==============
    AB CD EF GH ....

    AB = Command
    CDEF = length of the data following
    GH ... = data

    Total length is CDEF + 3 (1 byte command + 2 bytes len)


    Command 0x means from STB to gbox
    Command Fx means from gbox to STB


    SEND PMT = 01 (send PMT to gbox)
    --------------------------------
    01 xx xx yy yy zz zz zz zz data ....
    xx = Len
    yy = SID ( byte 2 and bytes 3 from the PMT)
    zz = PMT CRC32 (last 4 bytes in the PMT)
    Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
    Provider is only used in Seca and Viaccess, in other systems put 00 00 00
    For Seca use 00 xx yy and for viaccess xx yy z0

    On each channel change the DVB box must send the PMT first, on FTA Channels please send: 01 00 06 yy yy zz zz zz zz


    SEND ECM = 03 (send ECM to gbox)
    --------------------------------
    03 xx xx yy yy ecm_data ....
    xx = len
    yy = pid

    Note: Please send every ecm only once, do not send the same ecm multiple times.


    REQUESTING PIDS DATA = F1 (receive ECM pid list )
    -------------------------------------------------
    F1 xx xx pid1 pid2 pid3 ....
    xx = Len
    pidx = 2 bytes for each pid

    Please send me ECM data from these pids only, close all other already open.


    CW RETURN = F2 (receive ControlWords)
    -------------------------------------
    F2 00 10 cw1 (8 bytes) cw2 (8 bytes)


    Command flow on a channel change
    ================================
    1. DVB box sends PMT with command 01 on a channel change
    2. gbox sends pid list of the ecm's it can handle with command F1
    3. DVB box sends ECM's (from all pids in the pid list) with command 03
    4. gbox sends CW's with command F2
    5. As soon the gbox has success in decoding a ecm it sends again a F1 command
    with one pid only, the DVB box should close then all other pids and from
    now on send only ecm data from that pid.

    After this command 03 and F2 will be repeated until a channel change.

    On the next channel change the DVB should close all open pids and repeat the
    above procedure.



    //-----------------------------------------------------------------------------------------
    //-----------------------------------------------------------------------------------------
    //-----------------------------------------------------------------------------------------
    //-----------------------------------------------------------------------------------------
    Advanced protocol

    cmd 01 and 03 are not enough for multi-channel.

    so added



    Advanced SSSP support = 04 (send cmd to gbox)
    --------------------------------
    04 xx xx yy yy
    xx = Len
    yy = check value ( returned )



    Reply Advanced SSSP support = F4
    -------------------------------------------------
    F4 xx xx yy yy
    xx = Len
    yy = 2 bytes, returned from CMD 04







    SEND PMT = 05 (send PMT to gbox)
    --------------------------------
    05 xx xx aa yy yy zz zz zz zz data ....
    xx = Len
    aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
    yy = SID ( byte 5 and bytes 6 from the PMT)
    zz = PMT CRC32 (last 4 bytes in the PMT)
    Data = CAID1 (2 bytes) PID1 (2 bytes) PROVIDER1 (3 bytes) CAID2 PID2 PROVIDER2 ....
    Provider is only used in Seca and Viaccess, in other systems put 00 00 00
    For Seca use 00 xx yy and for viaccess xx yy z0

    On each channel change the DVB box must send the PMT first, on FTA Channels please send: 05 00 07 aa yy yy zz zz zz zz


    REQUESTING PIDS DATA = F5 (receive ECM pid list )
    -------------------------------------------------
    F1 xx xx aa pid1 pid2 pid3 ....
    xx = Len
    aa = from cmd 05
    pidx = 2 bytes for each pid

    Please send me ECM data from these pids only, close all other already open.





    SEND ECM = 06 (send ECM to gbox)
    --------------------------------
    03 xx xx aa bb bb bb bb yy yy ecm_data ....
    xx = len
    aa = which channel, less than 10, example 00=viewing channel, 01=pip channel, 02= timeshift, 03=recording 1, 04=recording 2,.....
    bb = 4bytes, tag, returned from cmd F6
    yy = pid

    Note: Please send every ecm only once, do not send the same ecm multiple times.


    CW RETURN = F6 (receive ControlWords)
    -------------------------------------
    F2 00 15 aa bb bb bb bb cw1 (8 bytes) cw2 (8 bytes)
    aa = which channel from cmd 06
    bb = tag 4bytes from cmd 06
    http://hv-softwares.ifrance.com/sw/160Z4USB_CAS.zip

    CH9090XUSB

  2. Advertise Here
  3. #222
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    New Official Firm for Hivion 13.10.2010


    All models
    - Improved for Seca(Mediaguard) smartcard
    Attached Files Attached Files

  4. #223
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    New Official Firm for Hivion (2) 13.10.2010



    All models
    - Improved for Seca(Mediaguard) smartcard
    Attached Files Attached Files

  5. #224
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    Update 14-10-2010


    -Official firmware
    Attached Files Attached Files

  6. #225
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    Update (2) 14-10-2010


    -Official firmware
    Attached Files Attached Files

  7. #226
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    Update 25-10-2010

    Official Firmware
    Attached Files Attached Files

  8. #227
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    Update 27-10-2010

    Iclass HD USB PVR
    - Multi-audio track recording supported
    Attached Files Attached Files

  9. #228
    Senior Member
    Join Date
    12-05-2009
    Posts
    202
    Uploads
    64
    Likes
    1

    Re: Firmware Hivion

    new firm hivion 29.10.2010
    Attached Files Attached Files

  10. #229
    VIP Member yousss's Avatar
    Join Date
    12-08-2007
    Posts
    621
    Uploads
    348
    Likes
    1

    Re: Firmware Hivion

    new firm hivion 11_01_2010
    Attached Files Attached Files

  11. #230
    Amazigh For Ever OnePiece's Avatar
    Join Date
    17-04-2009
    Location
    SomeWhere On Ground
    Posts
    20,463
    Uploads
    3,661
    Likes
    50

    Re: Firmware Hivion

    Update 02-11-2010

    Official firmware Hivion
    Attached Files Attached Files

Page 23 of 37 FirstFirst ... 131821222324252833 ... LastLast
Advertise Here

Similar Threads

  1. New firmware hivion 04/07/2011
    By gerant in forum HIVION Firmware
    Replies: 0
    Last Post: 04-07-2011, 12:03:23
  2. Hivion
    By bajern in forum Albanian / Shqip
    Replies: 2
    Last Post: 24-11-2009, 14:18:42
  3. Question To the makers of the Hivion firmware:
    By Diddel in forum HIVION
    Replies: 0
    Last Post: 09-11-2009, 07:57:35
  4. plz help on Hivion
    By kasa2000 in forum Conditional Access Systems (CAS)
    Replies: 1
    Last Post: 19-02-2008, 10:52:26

Posting Permissions

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